:root {
  --ink: #1a1a1a;
  --muted: #5d636a;
  --sand: #f4f1ed;
  --carbon: #0f1012;
  --accent: #d06b2f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
a { color: var(--accent); text-decoration: none; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 7%;
  border-bottom: 1px solid #ececec;
  background: #ffffff;
}
.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}
.section {
  padding: 70px 7%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero {
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding: 70px 7%;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero h1 { font-size: 2.7rem; margin: 0; }
.hero p { font-size: 1.05rem; line-height: 1.6; margin: 0; }
.hero-image {
  background: #e8e1d9;
  padding: 12px;
}
.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.cta-button {
  background: var(--accent);
  border: none;
  color: #ffffff;
  padding: 14px 22px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}
.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.split.reverse { flex-direction: row-reverse; }
.split-text { flex: 1 1 320px; }
.split-media {
  flex: 1 1 320px;
  background: #e8e1d9;
  padding: 14px;
}
.split-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.storyline {
  background: var(--sand);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.highlight {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.highlight-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #ececec;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.image-frame {
  background: #ded9d0;
  padding: 8px;
}
.image-frame img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.trust-panel {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}
.trust-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 18, 0.6);
}
.trust-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  flex: 1 1 250px;
  border: 1px solid #e6e6e6;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card .image-frame {
  background: #dcd7cf;
  padding: 8px;
}
.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.price-tag {
  font-weight: 700;
  color: var(--accent);
}
.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}
.form-wrap {
  background: var(--sand);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
label { font-weight: 600; }
select, input {
  padding: 12px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
}
.submit-button {
  background: var(--carbon);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  align-self: flex-start;
}
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #ececec;
  padding: 14px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.flow-box {
  background: var(--sand);
  padding: 24px;
  border: 1px solid #ededed;
}
.contact-card {
  border: 1px solid #ececec;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.confirmation {
  background: #ffffff;
  border: 1px solid #ececec;
  padding: 24px;
  max-width: 640px;
}
footer {
  background: #f6f6f6;
  padding: 40px 7%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: none;
  padding: 10px 14px;
  cursor: pointer;
}
.cookie-accept { background: var(--accent); color: #ffffff; }
.cookie-reject { background: #d4d4d4; color: #1a1a1a; }
