:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted: #5f5f5b;
  --accent: #d18c3d;
  --accent-dark: #a96724;
  --sage: #3c4a42;
  --sand: #f4efe8;
  --mist: #eef2f0;
  --line: #d8d2c7;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.topbar {
  padding: 1.8rem 0 1rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section--alt {
  background: var(--sand);
}

.section--mist {
  background: var(--mist);
}

.section--layered::before {
  content: "";
  position: absolute;
  inset: 2rem 10% auto;
  height: 60%;
  background: rgba(209, 140, 61, 0.12);
  border-radius: 40px;
  z-index: 0;
}

.section--layered .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-media {
  position: relative;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-media img {
  border-radius: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(209, 140, 61, 0.35);
}

.button--ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offset-left {
  transform: translateX(-2%);
}

.offset-right {
  transform: translateX(2%);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card-grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  background: #fff;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.sticky-rail {
  position: relative;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.3rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.price-item strong {
  font-size: 1.05rem;
}

.price {
  color: var(--accent-dark);
  font-weight: 700;
}

.form-shell {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(60, 74, 66, 0.1);
  color: var(--sage);
  font-size: 0.85rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.3rem;
  border: 1px solid var(--line);
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  background: var(--sage);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-band img {
  border-radius: 22px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--mist);
  padding: 2rem;
  border-radius: var(--radius);
}

.map-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  font-weight: 600;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.columns .card {
  border-radius: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.legal {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
  }

  .card-grid .card {
    flex: 1;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .stacked-cards .card {
    flex: 1;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 calc(50% - 1.2rem);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }

  .columns {
    flex-direction: row;
  }

  .columns .card {
    flex: 1;
  }
}
