* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --ink: #1e1b16;
  --muted: #6a5f52;
  --accent: #c86a2a;
  --accent-dark: #a95421;
  --panel: #ffffff;
  --sand: #efe7dc;
  --slate: #2f3a3f;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--panel);
  border-bottom: 1px solid #e2d8cc;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.brand-mark {
  font-size: 18px;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary {
  background: var(--slate);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #1f262a;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.outline:hover,
.btn.outline:focus {
  background: var(--accent);
  color: #fff;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 70px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 40% -10% -10% 55%;
  background: #f3d8bf;
  transform: rotate(-4deg);
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-media {
  flex: 1 1 360px;
  background: #f1dcc6;
  padding: 12px;
  border-radius: 20px;
}

.hero-media img {
  width: 100%;
  height: 360px;
  border-radius: 16px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw;
}

.section.alt {
  background: var(--panel);
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-split .copy {
  flex: 1 1 300px;
}

.section-split .media {
  flex: 1 1 280px;
  background: #efe0d2;
  padding: 10px;
  border-radius: 18px;
}

.section-split .media img {
  width: 100%;
  height: 280px;
  border-radius: 14px;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--slate);
  color: #fff;
  padding: 40px;
  border-radius: 28px;
  margin-top: -40px;
}

.offset-panel .tag {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.flow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.flow-card {
  flex: 1 1 200px;
  background: var(--panel);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #eee1d4;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #e7d6c4;
  padding: 28px;
  border-radius: 24px;
}

.image-band img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: #f4e8db;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #ecdcca;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8c9b6;
  font-size: 15px;
  background: #fff;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.inline-cta:hover,
.inline-cta:focus {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.legal {
  max-width: 820px;
}

.footer {
  margin-top: auto;
  background: #1f1c18;
  color: #f5ede4;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5ede4;
  border-bottom: 1px solid #f5ede4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #eadfce;
  display: none;
  z-index: 30;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
