* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f1c18;
  --muted: #5b564f;
  --accent: #7c3f2a;
  --accent-soft: #f0e3da;
  --line: #ddd5cb;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 24px 0 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 0.9;
  background: #eaded5;
  padding: 12px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.section.no-line {
  border-bottom: none;
}

.mag-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.mag-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-col.wide {
  flex: 1.4;
}

.mag-col.narrow {
  flex: 0.7;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #e3d7ce;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.cta-button,
.ghost-button {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

.cta-button {
  background: var(--accent);
  color: #fff;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-inline {
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 10px;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4ef;
  color: var(--accent);
  font-size: 12px;
  border: 1px solid var(--line);
}

.footer {
  padding: 28px 0 60px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 10px;
  display: none;
  z-index: 50;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-visible {
  display: flex;
}

.image-strip {
  display: flex;
  gap: 14px;
}

.image-strip .strip-item {
  flex: 1;
  background: #e7dbd2;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 180px;
}

.bg-section {
  background: #efe7e0;
  padding: 28px;
  border-radius: 12px;
}

.bg-image {
  background: #eaded5;
  padding: 12px;
}

.bg-image img {
  width: 100%;
  height: 260px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.service-info {
  flex: 1;
}

.price {
  font-weight: 700;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.quote {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  font-style: italic;
}

@media (max-width: 900px) {
  .hero,
  .mag-row {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
