* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a31;
  --muted: #52626b;
  --paper: #f7f3ee;
  --sand: #efe6db;
  --fog: #f1f5f7;
  --accent: #c37b5a;
  --accent-dark: #9e5d41;
  --pine: #2a5145;
  --stone: #e7e2da;
  --shadow: rgba(25, 38, 43, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  padding: 28px 22px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
}

.nav a:hover {
  background: rgba(195, 123, 90, 0.15);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: var(--pine);
  color: #fff;
  border-radius: 16px;
}

.sidebar-cta p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 36px 40px 0;
}

.header .kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.header h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 12px 0 16px;
  max-width: 720px;
}

.header p {
  max-width: 620px;
  color: var(--muted);
}

.section {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--fog);
}

.section.warm {
  background: var(--stone);
}

.section .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split .pane {
  flex: 1 1 280px;
}

.highlight-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-card h3 {
  margin: 0;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 180px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 26px var(--shadow);
}

.metric span {
  font-size: 26px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: rgba(31, 42, 49, 0.08);
  color: var(--ink);
}

.link-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px var(--shadow);
}

.service-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--pine);
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 15px;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 100px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px var(--shadow);
}

.footer {
  padding: 30px 40px 50px;
  background: #141c21;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  padding: 18px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-show {
  display: flex;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px var(--shadow);
}

.quote {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
  margin: 0;
}

.inline-cta {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(195, 123, 90, 0.12);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(42, 81, 69, 0.15);
  color: var(--pine);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 28px var(--shadow);
}

.legal-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h2 {
  margin-bottom: 0;
}

.hero-media {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-media .image-frame {
  flex: 1 1 300px;
}

.hero-media .media-block {
  flex: 1 1 240px;
}

.section-cta {
  padding: 18px;
  border-radius: 18px;
  background: rgba(42, 81, 69, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
  }

  .header,
  .section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
  }
}
