:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #615c55;
  --accent: #d24f2a;
  --accent-dark: #b8401f;
  --sand: #f3efe9;
  --linen: #faf7f2;
  --stone: #e4ddd2;
  --forest: #2f3b35;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--linen);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: relative;
  padding: 28px 6vw 10px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

nav .brand {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

nav ul a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav ul a:hover {
  border-color: var(--accent);
}

.main-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  padding: 60px 6vw;
}

.section.offset {
  padding: 80px 6vw 40px;
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.section.dark .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}

.hero-media {
  position: relative;
  align-self: flex-end;
  width: min(560px, 90vw);
  margin-top: -40px;
}

.hero-card {
  position: absolute;
  right: 8%;
  bottom: -22px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-card strong {
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.asym-row .panel {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.asym-row .panel.offset-panel {
  margin-left: 12vw;
}

.asym-row .panel.dark-panel {
  background: var(--forest);
  color: var(--white);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 12px;
}

.tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  background: var(--stone);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-item strong {
  font-size: 20px;
}

.price {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}

.split-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 22px;
  padding: 30px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cdc1;
  background: #fffaf5;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 50px 6vw 60px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-stack img {
  border-radius: 20px;
}

.inline-testimonial {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hero-media {
    margin-top: 0;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
  }

  .service-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .info-card {
    flex: 1;
  }
}
