* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5b5a57;
  --accent: #b04a2b;
  --accent-soft: #f4d9d0;
  --stone: #f3f1ee;
  --olive: #dfe7d7;
  --sea: #e6f1f3;
  --shadow: 0 16px 40px rgba(28, 27, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

.sidebar {
  width: 260px;
  background: #fcf6f2;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid #efe5df;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 16px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: var(--accent-soft);
  color: #7c2b15;
}

.sidebar-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  flex: 1;
  padding: 36px 48px 90px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual .overlay-card {
  position: absolute;
  bottom: -18px;
  left: 16px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--olive);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 18px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: #1f2a33;
}

.btn.outline {
  background: transparent;
  border: 1px solid #caa99b;
  color: #7c2b15;
}

.btn:hover {
  transform: translateY(-2px);
}

.magazine-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.magazine-card {
  flex: 1;
  min-width: 240px;
  background: var(--stone);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.magazine-card img {
  border-radius: 18px;
}

.split-contrast {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--sea);
  border-radius: 28px;
  padding: 26px;
}

.split-contrast .column {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.service-price {
  font-weight: 700;
  color: #1f2a33;
}

.form-wrap {
  background: var(--accent-soft);
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6c7c0;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-link {
  color: #7c2b15;
  font-weight: 600;
  border-bottom: 1px solid #7c2b15;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2a33;
  color: #fff;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e1d3cc;
  font-size: 0.85rem;
}

.footer {
  border-top: 1px solid #efe5df;
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-column {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .sidebar-meta {
    width: 100%;
  }

  .content {
    padding: 28px 22px 90px;
  }
}
