:root {
  color-scheme: light;
  --ink: #1b1a16;
  --muted: #5b5b54;
  --paper: #f6f2ee;
  --accent: #8b5a2b;
  --accent-soft: #d7c2ad;
  --dark: #241e19;
  --line: #e2d8cd;
  --highlight: #f1e4d7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 26px 6vw 12px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.brand a {
  font-size: 20px;
}

.tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 13px;
  color: var(--dark);
  background: var(--highlight);
  padding: 6px 10px;
  align-self: flex-start;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 6vw 24px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: var(--dark);
}

.button.ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.hero-image {
  min-height: 320px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-soft);
}

.hero-image--gift {
  background-image: url("https://images.unsplash.com/photo-1702066054534-c1e7ceef9b2e?w=1400&q=80");
}

.section {
  padding: 48px 6vw;
}

.section.tight {
  padding: 28px 6vw;
}

.section-title {
  font-size: 26px;
  margin: 0 0 18px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 18px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-box {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 var(--highlight);
}

.image-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--accent-soft);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card.active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.meta {
  font-size: 13px;
  color: var(--muted);
}

.layered {
  background: var(--highlight);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.layered--printing {
  background-image: url("https://images.unsplash.com/photo-1503694978374-8a2fa686963a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.layered--printing .highlight-panel {
  background: rgba(255, 255, 255, 0.92);
}

.highlight-panel {
  background: #fff;
  padding: 24px;
  border-left: 6px solid var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: #fff;
  padding: 18px;
  border: 1px dashed var(--line);
}

.testimonial {
  background: var(--dark);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 6vw 60px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  padding: 12px 16px;
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  z-index: 9;
}

.page-content {
  padding: 32px 6vw;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
}

.banner-image {
  min-height: 260px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-soft);
}

.banner-image--craft {
  background-image: url("https://images.unsplash.com/photo-1638829154930-9b47ff9cb533?w=1400&q=80");
}

.banner-image--eco {
  background-image: url("https://images.unsplash.com/photo-1638560926839-cb90ababd947?w=1400&q=80");
}

@media (min-width: 860px) {
  .nav-wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
    min-height: 420px;
  }

  .asym-row {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
