* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5d5d5d;
  --paper: #f7f3ee;
  --surface: #ffffff;
  --accent: #c4522b;
  --accent-dark: #9c3f23;
  --accent-soft: #f2d8cc;
  --shadow: rgba(21, 21, 21, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e6dfd7;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.side-nav a {
  padding: 6px 0;
  border-bottom: 1px solid #f0e7dd;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--ink);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 32px 64px;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.alt {
  background: var(--surface);
}

.section.care-band {
  background-image: url("https://images.pexels.com/photos/7464725/pexels-photo-7464725.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #2f2a27;
  position: relative;
  color: #fff;
}

.section.care-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
}

.section.care-band > * {
  position: relative;
  z-index: 1;
}

.hero {
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #2c2a29;
  padding: 72px 64px;
}

.hero-storage {
  background-image: url("https://images.pexels.com/photos/7464465/pexels-photo-7464465.jpeg");
}

.hero-about {
  background-image: url("https://images.pexels.com/photos/4971212/pexels-photo-4971212.jpeg");
}

.hero-services {
  background-image: url("https://images.pexels.com/photos/9898347/pexels-photo-9898347.jpeg");
}

.hero-contact {
  background-image: url("https://images.pexels.com/photos/7464729/pexels-photo-7464729.jpeg");
}

.hero-privacy {
  background-image: url("https://images.pexels.com/photos/8580732/pexels-photo-8580732.jpeg");
}

.hero-gdpr {
  background-image: url("https://images.pexels.com/photos/7309321/pexels-photo-7309321.jpeg");
}

.hero-cookies {
  background-image: url("https://images.pexels.com/photos/7464698/pexels-photo-7464698.jpeg");
}

.hero-terms {
  background-image: url("https://images.pexels.com/photos/7464729/pexels-photo-7464729.jpeg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.55);
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  width: 280px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card .img-frame {
  border-radius: 12px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f6e9e2;
}

.lead {
  font-size: 18px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  min-width: 160px;
}

.metric span {
  display: block;
  font-weight: 600;
  font-size: 20px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.price {
  font-weight: 600;
  font-size: 16px;
}

.img-frame {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #e6ddd5;
  display: flex;
}

.img-frame.tall {
  height: 260px;
}

.img-frame.short {
  height: 140px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.highlight {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  margin-left: 12px;
  color: var(--muted);
}

.form-wrap {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ddd2c7;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 32px 64px 48px;
  background: #1c1b1a;
  color: #f5f1ec;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 18px var(--shadow);
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    width: 100%;
  }

  .section,
  .hero {
    padding: 36px 24px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
