@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1d1c1a;
  --muted: #5d5a56;
  --accent: #d34b1b;
  --accent-dark: #a33815;
  --surface: #ffffff;
  --surface-alt: #ece7df;
  --shadow: 0 20px 45px rgba(19, 18, 17, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  padding: 40px 0 30px;
}

.split {
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 52px 0;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 52px 32px;
}

.split-bg .layered {
  background: rgba(255, 255, 255, 0.9);
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 10px 0 12px;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.button:hover {
  background: var(--accent-dark);
}

.button-outline {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.button-outline:hover {
  background: var(--accent);
  color: #fff;
}

.layered {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background: rgba(211, 75, 27, 0.05);
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric-card {
  background: var(--surface-alt);
  padding: 16px;
  border-radius: 18px;
  flex: 1 1 160px;
}

.testimonial {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(20, 18, 16, 0.08);
}

.service-card img {
  width: 140px;
  object-fit: cover;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--surface);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9d2c9;
  font-family: inherit;
}

.footer {
  padding: 40px 0 60px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ddd4c9;
  color: #3c3935;
}

.section-note {
  font-size: 14px;
  color: var(--muted);
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row-sm {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
