* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b18;
  --muted: #5e5a55;
  --sand: #f7f1ea;
  --olive: #5a6b4a;
  --clay: #b36b4e;
  --cream: #fffaf4;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw;
  background: var(--sand);
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #eee3d7;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw 20px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #efe3d6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-primary {
  background: var(--olive);
  color: #fff;
}

.cta-secondary {
  background: #fff;
  border: 1px solid #d4c7b9;
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 6vw 50px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col-wide {
  flex: 2 1 380px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #efe3d7;
}

.col-narrow {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f1e7db;
  min-height: 200px;
}

.feature-block {
  background: var(--sand);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e8dbcd;
}

.feature-block h3 {
  margin-bottom: 10px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #efe3d7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--clay);
}

.form-section {
  background: #f4ece2;
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8cabb;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  color: var(--olive);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #d4c7b9;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.sticky-cta button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-box {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #efe3d7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #d4c7b9;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d4c7b9;
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.content-wrap {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-image {
  flex: 1 1 260px;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: #f1e7db;
}

.highlight {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e8dbcd;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
