* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --ink: #1e2a24;
  --muted: #5b6a61;
  --accent: #2f6f4e;
  --accent-2: #1f4f6e;
  --soft: #e6ece6;
  --paper: #ffffff;
  --sun: #f2c94c;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #dbe3dd;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--soft);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  background-color: #2a3a33;
  border-radius: 26px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 28, 0.48);
}

.hero-inner {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
}

.button {
  background: var(--sun);
  color: #1d1d1d;
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

.section {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.stack {
  flex-direction: column;
}

.panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.light {
  background: #fdf7ef;
}

.panel.inked {
  background: #1f2f29;
  color: #fff;
}

.media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #dde6df;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 calc(33% - 12px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .media {
  height: 150px;
  background: #dfe8e1;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.story-band {
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80") center/cover no-repeat;
  background-color: #24362c;
  border-radius: 22px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 25, 20, 0.55);
}

.story-band .panel {
  position: relative;
  background: rgba(10, 18, 15, 0.55);
}

.form-wrap {
  background: #f1f4f0;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8d0;
  font-size: 15px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-cta {
  color: var(--accent-2);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-2);
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e7ece8;
  color: var(--ink);
}

.legal-text {
  background: var(--paper);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-hero .media {
  flex: 0 0 280px;
  height: 200px;
  background: #dee7df;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #dbe3dd;
  }

  .content {
    padding: 32px 24px 90px;
  }

  .section,
  .page-hero {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }
}
