* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1c1d;
  --muted: #5d6366;
  --sand: #f5f1ea;
  --linen: #efe7db;
  --cedar: #9b6b47;
  --iron: #2a2e31;
  --mist: #e4e0d8;
  --river: #2e5d62;
  --sun: #d7b983;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: var(--sand);
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  background-color: #d8d2c8;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  width: 100%;
  background: rgba(26, 28, 29, 0.55);
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #ffffff;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  max-width: 620px;
}

.hero p {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #e3c894;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-alt {
  background: var(--linen);
}

.section-wide {
  padding: 90px 8vw;
}

.section h2 {
  margin: 0;
  font-size: 32px;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: var(--mist);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.image-frame.tall {
  min-height: 320px;
}

.image-frame.wide {
  min-height: 220px;
}

.story-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 30px rgba(26, 28, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card strong {
  font-size: 16px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: var(--sand);
  border-radius: 16px;
  padding: 18px;
}

.metric span {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.testimonial {
  border-left: 3px solid var(--cedar);
  padding-left: 18px;
  color: var(--muted);
}

.pricing-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 24px rgba(26, 28, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--iron);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-option {
  border: 1px solid #d8d1c7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
}

.service-option input {
  margin-right: 10px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbc3b6;
  font-size: 15px;
}

.cta-band {
  background: var(--iron);
  color: #ffffff;
  padding: 26px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band .button {
  background: var(--sun);
  color: var(--ink);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(26, 28, 29, 0.92);
  color: #ffffff;
  padding: 14px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  background: #ffffff;
  color: var(--iron);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 50px 8vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  background: var(--linen);
  padding: 60px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero h1 {
  margin: 0;
  font-size: 36px;
}

.list-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.list-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.muted {
  color: var(--muted);
}

.bg-workshop {
  background-color: #d7d1c6;
  background-image: url("https://images.pexels.com/photos/7480717/pexels-photo-7480717.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-wood {
  background-color: #d2c3b2;
  background-image: url("https://images.pexels.com/photos/5711816/pexels-photo-5711816.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-studio {
  background-color: #d4d1cb;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-showroom {
  background-color: #d9d5cf;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.inline-link {
  color: var(--river);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
