.root {
  --ink: #1f2328;
  --muted: #5b6673;
  --cream: #f7f4ef;
  --sand: #efe7db;
  --accent: #3b6e5a;
  --accent-dark: #2b5344;
  --rose: #f1e4e1;
  --slate: #dde3ea;
  --gold: #d6b36a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e2e2e2;
  gap: 14px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #d7d7d7;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fafafa;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 7vw 6vw 6vw;
  color: var(--white);
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 28, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--accent-dark);
}

.section {
  padding: 6vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.section.slate {
  background: var(--slate);
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.image-frame {
  background: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.story-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.chip {
  padding: 8px 12px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid #dedede;
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}

.service-media {
  background: #cfd7d1;
  height: 180px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--white);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: var(--accent-dark);
  color: var(--white);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #1f2328;
  color: var(--white);
  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d3d7dc;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(31, 35, 40, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 4;
}

.sticky-cta a {
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 35, 40, 0.18);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.legal-block {
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 240px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.plain-hero {
  background: var(--slate);
  padding: 4vw 6vw;
}

.plain-hero h1 {
  margin: 0;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: #d5d9de;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
