* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1d1b;
  --muted: #5e5a54;
  --sand: #f5f1ec;
  --clay: #d9cbbf;
  --forest: #2f3a34;
  --accent: #a56a3a;
  --sage: #c8d0c7;
  --line: #e3d9cf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fcfaf7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 20px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.nav a {
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: #6b4b2f;
  background: #f0e3d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 6vw 20px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--forest);
  color: #fff;
}

.btn.secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-image {
  flex: 1 1 320px;
  align-self: flex-start;
  background: var(--clay);
  padding: 10px;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 420px;
  border-radius: 18px;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .text {
  flex: 1 1 300px;
}

.asym-row .media {
  flex: 1 1 280px;
  background: var(--sage);
  padding: 14px;
  border-radius: 20px;
}

.asym-row .media img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.split-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.note {
  flex: 1 1 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.note h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.service-card .image-frame {
  background: #efe7dd;
  border-radius: 16px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.pricing-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-index {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.quote {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.quote span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.consultation {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 22px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
  color: var(--muted);
}

.form-card select,
.form-card input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.info-panel {
  flex: 1 1 260px;
  background: var(--sand);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #1d1b19;
  color: #f7f2ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer h4 {
  margin: 0 0 12px;
}

.footer a:hover {
  opacity: 0.8;
}

.disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: #d9cec4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-page {
  padding: 30px 6vw 60px;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page p {
  color: var(--muted);
}

.image-frame {
  background: #e9e1d9;
  border-radius: 18px;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.layered {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.layered .card {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.layered .card.offset {
  margin-top: 26px;
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .nav {
    justify-content: flex-start;
    text-align: left;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    border-radius: 18px;
  }
}
