:root {
  --bg: #f7f4ef;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #2f5e4e;
  --accent-2: #c39a5b;
  --panel: #ffffff;
  --line: #e2ded7;
  --soft: #efe8de;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--soft);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #e7dfd3;
  padding: 8px 10px;
  border-radius: 8px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.2s ease;
}

nav a:hover,
nav a:focus {
  background: #ddd3c6;
}

.sidebar-footer {
  margin-top: auto;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.main {
  flex: 1;
  padding: 36px 6vw 80px;
}

.section {
  margin-bottom: 64px;
}

.section h1,
.section h2,
.section h3 {
  margin: 0 0 16px;
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 280px;
  background: #dcd3c8;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
  color: #1f1f1f;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #e5ddd1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  background: #efe8de;
}

.layered::before {
  content: "";
  position: absolute;
  inset: -30px 40% 40% -30px;
  background: #e0d4c5;
  border-radius: 30px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.bg-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #dcd3c8;
  padding: 34px;
  color: #1f1f1f;
}

.bg-section .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.bg-section .bg-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-option {
  flex: 1 1 200px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-option input {
  margin-top: 4px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta .btn {
  padding: 10px 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6vw;
  z-index: 30;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  background: #ffffff;
  color: #1f1f1f;
}

.cookie-actions .btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
}

.notice {
  background: #fff8ef;
  border-left: 4px solid var(--accent-2);
  padding: 14px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .main {
    padding: 28px 7vw 90px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    border-radius: 18px;
  }
}
