* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f6f3;
  --ink: #1c1c1c;
  --muted: #5f5f5f;
  --accent: #c12f2f;
  --accent-soft: #f2d6d6;
  --panel: #ffffff;
  --shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links button {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 40px 6%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
    url("https://images.unsplash.com/photo-1483721310020-03333e577078?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

.hero-content p {
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-primary,
.button-secondary {
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  color: var(--ink);
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--panel);
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.image-card {
  background: #e7e3de;
  padding: 12px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 320px;
  background: #e7e3de;
}

.story-card {
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 180px;
  background: #eae6df;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--panel);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cfcfcf;
  font-size: 15px;
}

button[type="submit"] {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 20;
}

.footer {
  padding: 40px 6%;
  background: #1b1b1b;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 16px;
  cursor: pointer;
}

.highlight-panel {
  background: #f0ece6;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.background-slab {
  background: linear-gradient(120deg, #f6f1ea 20%, #e6dcd0 80%);
}

@media (max-width: 720px) {
  .hero {
    padding: 32px 6%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
