* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #151515;
  --muted: #5f5f5f;
  --panel: #f5f1ea;
  --accent: #2f6f7a;
  --accent-dark: #1f4b53;
  --sand: #efe7dc;
  --highlight: #fff8f0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  gap: 0;
}

.side-nav {
  width: 260px;
  padding: 32px 24px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: #e6f1f2;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
  background: transparent;
}

.nav-links a:hover {
  background: #e9e1d7;
}

.nav-cta {
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button.secondary:hover {
  background: #e9f2f3;
}

main {
  flex: 1;
  padding: 32px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 15, 15, 0.65), rgba(15, 15, 15, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  flex: 1 1 280px;
  background: #e6e0d7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ece1d4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  background: #efe3d8;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 13px;
}

.section-highlight {
  background: var(--highlight);
  padding: 28px;
  border-radius: 20px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}

.section-bg .section-bg-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c5;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 280px;
}

.service-item {
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eadfd2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item button {
  align-self: flex-start;
}

.sticky-cta {
  background: #fff;
  border: 1px solid #eee2d6;
  padding: 16px;
  border-radius: 16px;
  position: sticky;
  top: 24px;
  align-self: flex-end;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  border-top: 1px solid #efe5d8;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 320px;
  background: #fff;
  border: 1px solid #e8e0d6;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-box {
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #efe3d8;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  main {
    padding: 24px;
  }

  .cookie-banner {
    left: 20px;
  }
}
