* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f6f4;
  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;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 12px;
}

.nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1f2328;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  padding: 40px 0 70px;
}

.hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.hero__content {
  flex: 1 1 320px;
}

.hero__content h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 16px;
}

.hero__content p {
  margin: 0 0 20px;
  color: #404854;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.button--ghost {
  background: transparent;
  color: #1f2328;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1 1 320px;
}

.split__media {
  flex: 1 1 320px;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: #ffffff;
}

.section--accent {
  background: #111827;
  color: #f7f6f4;
}

.section--layered {
  position: relative;
  background: #ece7e1;
}

.section--layered::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(31, 35, 40, 0.12);
  pointer-events: none;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ece7e1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__price {
  font-weight: 700;
  font-size: 18px;
}

.img-frame {
  background-color: #d9d4ce;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form select,
.form input,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c3bc;
  font-size: 14px;
  margin-bottom: 14px;
  background: #fbfaf8;
}

.form button {
  width: 100%;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.sticky-cta__inner {
  background: rgba(31, 35, 40, 0.95);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  background: #1f2328;
  color: #f7f6f4;
  padding: 48px 0;
  margin-top: auto;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #2f3640;
}

.cookie-banner .button {
  width: auto;
}

.bg-press {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-tools {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-steel {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-ink {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-work {
  background-image: url("https://images.unsplash.com/photo-1518779578993-ec3579fee39f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-layer {
  min-height: 220px;
  border-radius: 24px;
}

.bg-etch {
  background-image: url("https://images.unsplash.com/photo-1476362555312-ab9e108a0b7e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1497215842964-222b430dc094?w=1400&q=80");
  background-size: cover;
  background-position: center;
}
