* {
  box-sizing: border-box;
}

:root {
  --cream: #f6f1ec;
  --ink: #1f1b17;
  --rose: #b46b77;
  --sand: #d7c8b9;
  --olive: #6a6a58;
  --deep: #3a2c28;
  --mist: #efe7df;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: var(--mist);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--olive);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border: 1px solid var(--deep);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: 60px 6vw;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1763631403216-8d193008481e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 15, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}

.btn-dark {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section-offset {
  background: var(--mist);
  margin: 30px 6vw 0 0;
}

.section-sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 42px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.image-frame {
  background: var(--mist);
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--sand);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.highlight {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px;
  background: #fff;
  border-left: 6px solid var(--rose);
}

.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.flow-row .bubble {
  flex: 1 1 200px;
  padding: 20px;
  background: var(--mist);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--sand);
}

.price-item span {
  font-weight: 600;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--olive);
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 340px;
  background: #fff;
  padding: 26px;
  border: 1px solid var(--sand);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--sand);
  background: var(--mist);
}

input,
select,
button,
textarea {
  font: inherit;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--sand);
}

button {
  padding: 12px 18px;
  border: none;
  background: var(--deep);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  background: var(--mist);
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--sand);
  padding: 18px;
  max-width: 340px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  background: var(--deep);
  color: #fff;
}

.legal-hero {
  padding: 60px 6vw 20px;
}

.legal-content {
  padding: 20px 6vw 60px;
}

.legal-content p {
  max-width: 840px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--sand);
  max-width: 520px;
}

.plain-figure {
  background: var(--mist);
  padding: 10px;
  max-width: 540px;
}

.plain-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
