* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5f5a55;
  --sand: #f3eee7;
  --clay: #e6dcd0;
  --sun: #f3c35d;
  --fog: #f7f3ee;
  --accent: #2f5f52;
  --shadow: 0 20px 40px rgba(28, 27, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 10px;
}

.topbar .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a:hover,
.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.sticky-cta:hover {
  opacity: 0.85;
}

.hero {
  position: relative;
  margin: 30px 0 60px;
}

.hero .page {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  padding: 40px 0;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-media {
  flex: 0.9;
  min-height: 360px;
  background-color: #dcd2c5;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 220px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  margin-left: 12px;
}

.section {
  margin: 80px 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 1;
  background-color: #e9e2d8;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.split .content {
  flex: 1.1;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.story-panel {
  display: flex;
  gap: 26px;
  align-items: stretch;
  background: var(--sand);
  border-radius: 28px;
  padding: 40px;
  position: relative;
}

.story-panel::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: var(--sun);
  border-radius: 24px;
  z-index: -1;
}

.story-panel .content {
  flex: 1.1;
}

.story-panel .image-frame {
  flex: 0.9;
}

.texture-block {
  background-color: #e1d6ca;
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  border-radius: 32px;
}

.texture-block .page {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.trust-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.benefit-card img {
  height: 180px;
}

.benefit-card .card-body {
  padding: 20px;
}

.pricing {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--clay);
  padding-bottom: 12px;
}

.form-wrap {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font: inherit;
}

.form-card button {
  margin-top: 18px;
}

.form-note {
  flex: 1 1 260px;
  padding: 30px;
  background: var(--sand);
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow);
}

.footer {
  background: #1f1f1f;
  color: #f3efe9;
  margin-top: 80px;
  padding: 50px 0 70px;
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--sun);
  color: #2b2620;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--clay);
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 50;
}

.cookie-banner .page {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #f0e9df;
  padding: 40px 0;
  border-radius: 28px;
  margin: 30px 0 40px;
}

.page-hero .page {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .image-frame {
  flex: 0.8;
  min-height: 220px;
}

.page-hero .content {
  flex: 1.2;
}

.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 180px;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero .page,
  .split,
  .story-panel {
    flex-direction: column;
  }

  .ghost-btn {
    margin-left: 0;
    margin-top: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
