* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --ink: #1e1c1a;
  --muted: #5b544d;
  --accent: #8a5a3b;
  --accent-dark: #6e452c;
  --paper: #ffffff;
  --sand: #efe7df;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background: var(--paper);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg);
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw;
  align-items: center;
}

.sand-section {
  background: var(--sand);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  background: var(--paper);
}

.hero-visual {
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #d7c8bc;
}

.inline-visual {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #ddcfc2;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.cta-link {
  padding: 10px 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.note-box {
  background: var(--sand);
  padding: 18px;
  border-radius: 14px;
}

.form-card {
  background: var(--paper);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc5bb;
  font-size: 1rem;
}

.form-card button {
  margin-top: 8px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 220px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #e1d7cc;
}

.card-visual {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #e6ddd3;
}

.footer {
  padding: 28px 6vw 40px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: var(--sand);
  color: var(--ink);
}

.contact-block {
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  padding: 16px;
  border-radius: 14px;
}

.thanks-highlight {
  font-size: 1.2rem;
  color: var(--accent-dark);
  font-weight: 700;
}
