* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5f5b56;
  --sand: #f4efe9;
  --clay: #d8cbbf;
  --forest: #2d3b2f;
  --light: #ffffff;
  --accent: #b06c3b;
  --soft: #f7f3ee;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: none;
}

header {
  background: var(--light);
  border-bottom: 1px solid #e5ded4;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h2 {
  font-size: 1.4rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 100px;
}

.section {
  padding: 0 6vw;
}

.hero {
  background-color: #c9b7a7;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(19, 20, 18, 0.55);
  padding: 48px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--light);
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-card {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--light);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--clay);
}

.highlight {
  background: var(--sand);
  padding: 34px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: var(--light);
  padding: 22px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing {
  background-color: #e9e1d6;
  background-image: url("https://images.unsplash.com/photo-1505409628601-edc9af17fda6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxfHxNb2JpbGllciUyMGFydGlzYW5hbCUyMHBvdXIlMjBpbnQlQzMlQTlyaWV1cnMlMjBwYXJpc2llbnN8ZnJ8MHwwfHx8MTc4MTc3NDI2NHww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-overlay {
  background: rgba(244, 239, 233, 0.92);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d9cfc3;
  padding-bottom: 10px;
}

.form-wrap {
  background: var(--light);
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d3c8bb;
  border-radius: 10px;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--forest);
  color: var(--light);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: var(--light);
  cursor: pointer;
  font-size: 0.95rem;
}

footer {
  background: var(--light);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid #e5ded4;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  border: 1px solid #e5ded4;
  padding: 16px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-actions .accept {
  background: var(--forest);
  color: var(--light);
}

.cookie-actions .reject {
  background: #ded6cc;
  color: var(--ink);
}

.legal-block {
  background: var(--sand);
  padding: 24px;
  border-radius: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.muted {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.content-page {
  padding: 36px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-section {
  background: var(--light);
  padding: 24px;
  border-radius: 16px;
}
