* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1a17;
  --muted: #6a625c;
  --cream: #fff7ee;
  --sun: #ffb15c;
  --rose: #f8d7d0;
  --sage: #d9e6d7;
  --ink-light: #3e332d;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-light);
}

.ad-label {
  background: var(--sun);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 32px 0 80px;
}

.hero-layout {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--rose);
  transform: translateY(12px);
}

.hero-media .accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  background: var(--sun);
  border-radius: 32px;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.soft {
  background: #fff;
}

.section.sage {
  background: var(--sage);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--muted);
}

.split-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 320px;
  padding: 28px;
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(20, 16, 12, 0.08);
  transform: translateY(-18px);
}

.image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--rose);
}

.image-wrap.tall {
  height: 360px;
}

.image-wrap.medium {
  height: 260px;
}

.floating {
  position: absolute;
  top: -20px;
  left: 12%;
  width: 120px;
  height: 120px;
  background: var(--sun);
  border-radius: 18px;
  transform: rotate(6deg);
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(20, 16, 12, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: var(--sun);
  color: var(--ink);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(31, 26, 23, 0.2);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.highlight {
  padding: 22px;
  background: var(--rose);
  border-radius: 18px;
}

.testimonial {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  flex: 1 1 240px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 26px 50px rgba(20, 16, 12, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 23, 0.2);
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(20, 16, 12, 0.18);
  display: none;
  width: min(320px, 90vw);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 36px 0 20px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.callout {
  background: var(--sage);
  padding: 22px;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 13px;
  color: var(--muted);
}

.no-phone {
  font-weight: 600;
  color: var(--ink-light);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.bg-layer img {
  object-fit: cover;
}
