* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5c6670;
  --sand: #f6f2ec;
  --stone: #e2dbd1;
  --clay: #b98f6e;
  --forest: #2e3a34;
  --mist: #edf1f4;
  --accent: #bf5c3d;
  --paper: #ffffff;
  --shadow: rgba(22, 28, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  max-width: 220px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 48px 6vw 24px;
  background: var(--sand);
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 10px 20px 0;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: var(--forest);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  filter: brightness(1.05);
}

.image-frame {
  background-color: var(--stone);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  position: relative;
  align-self: center;
}

.hero-image .badge {
  position: absolute;
  bottom: 18px;
  left: -24px;
  background: var(--paper);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  font-size: 0.9rem;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.muted {
  background: var(--mist);
}

.section.stone {
  background: var(--stone);
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 280px;
}

.split .visual {
  flex: 1 1 260px;
}

.offset-card {
  background: var(--paper);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 18px 36px var(--shadow);
  transform: translateY(-18px);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-quote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.gallery-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-strip .image-frame {
  flex: 1 1 220px;
  min-height: 200px;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border-radius: 24px;
  background: var(--forest);
  color: var(--paper);
}

.cta-panel a {
  color: var(--paper);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: var(--ink);
  color: var(--paper);
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.footer .disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #d6d6d6;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 16px 32px var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--mist);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-grid .card {
  flex: 1 1 260px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 18px 36px var(--shadow);
  padding: 16px 20px;
  display: none;
  gap: 12px;
  align-items: center;
  max-width: 560px;
  width: calc(100% - 32px);
  z-index: 50;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 90px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px var(--shadow);
  font-weight: 600;
}

.hero-backing {
  background: var(--forest);
  color: var(--paper);
  padding: 18px;
  border-radius: 20px;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--forest);
}

.bg-living {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
}

.bg-wood {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.full-bleed {
  padding: 60px 6vw;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.full-bleed .btn {
  align-self: flex-start;
}

.small-note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .hero {
    padding: 32px 6vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 80px;
  }
}
