* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f3ef;
  --ink: #1f1b18;
  --rose: #c48778;
  --olive: #6c6b55;
  --sand: #efe7df;
  --night: #2e2a28;
  --accent: #c35b4a;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.82rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px 6vw 60px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button,
.ghost-button,
.inline-link {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--ink);
  color: var(--cream);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.inline-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent);
  font-weight: 600;
}

.hero-image {
  flex: 1 1 340px;
  min-width: 280px;
  background: var(--sand);
  padding: 14px;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 380px;
  border-radius: 16px;
}

.section {
  padding: 60px 6vw;
}

.section.light {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: var(--cream);
}

.offset-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-card {
  flex: 1 1 300px;
  background: var(--cream);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.offset-card.dark {
  background: rgba(255, 255, 255, 0.08);
}

.image-frame {
  flex: 1 1 280px;
  background: #d6c5b9;
  padding: 12px;
  border-radius: 26px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split-band > div {
  flex: 1 1 260px;
}

.testimonial {
  background: var(--cream);
  padding: 20px;
  border-radius: 16px;
}

.testimonial p {
  margin-bottom: 8px;
}

.service-reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--cream);
  border-radius: 20px;
  padding: 18px;
  align-items: center;
}

.service-card img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
}

.service-info {
  flex: 1 1 240px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: var(--cream);
  padding: 26px;
  border-radius: 22px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9beb5;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 110px;
}

.form-message {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 8px;
}

.side-note {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

footer {
  padding: 40px 6vw 60px;
  background: var(--night);
  color: var(--cream);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--sand);
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 820px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .offset-card {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
