/* Base */
:root {
  --ink: #1b1a17;
  --muted: #615a52;
  --accent: #b9783d;
  --accent-dark: #8f5d2f;
  --sand: #f6f1ea;
  --stone: #eee4d7;
  --coal: #2a2622;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Navigation */
.site-header {
  padding: 24px 0 8px;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 240px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-weight: 600;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(640px, 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-visual .overlay-card {
  position: absolute;
  bottom: -18px;
  left: 0;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 240px;
}

/* Asymmetric sections */
.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--sand);
}

.split-offset {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-offset .text {
  max-width: 520px;
}

.split-offset .visual {
  margin-left: auto;
  width: min(560px, 100%);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row .card {
  border-left: 4px solid var(--accent);
}

.grid-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid-flow .card {
  background: var(--stone);
}

.collage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collage-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.collage-row img {
  flex: 1 1 220px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #eadfce;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote-strip {
  background: var(--coal);
  color: var(--white);
  padding: 32px 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Form */
.form-shell {
  background: var(--stone);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cbb6;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 32px 0;
  background: var(--sand);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

/* Utility */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.badge {
  background: var(--accent);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-offset {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .card-row {
    flex-direction: row;
  }

  .grid-flow {
    flex-direction: row;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
