* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6a5d52;
  --cream: #f6f1ea;
  --sand: #efe5d8;
  --bean: #3b2a1a;
  --accent: #b77942;
  --accent-dark: #8b5a2e;
  --leaf: #3e5f4b;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e5d7c7;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--bean);
}

.ad-label {
  padding: 6px 12px;
  background: var(--sand);
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6vw 64px;
  background: var(--white);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 420px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn.secondary {
  background: var(--leaf);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.bg-sand {
  background: var(--sand);
}

.section.bg-white {
  background: var(--white);
}

.section .section-title {
  font-size: 28px;
  margin: 0;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 280px;
}

.image-frame {
  background: #dcc7b1;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.story-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  min-width: 220px;
  border: 1px solid #eadbcc;
}

.card-media {
  background: #d8c1ab;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--bean);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eadbcc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d9c9b8;
  font-size: 14px;
  background: var(--white);
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 48px;
  background: var(--white);
  border-top: 1px solid #eadbcc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border: 1px solid #eadbcc;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.content-hero {
  padding: 40px 6vw 20px;
}

.content-hero h1 {
  margin: 0;
  font-size: 34px;
}

.content-layout {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #eadbcc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--sand);
  padding: 12px 16px;
  border-radius: 12px;
  flex-wrap: wrap;
}
