* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #4d4d4d;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --bg: #f7f6f2;
  --sand: #efe7da;
  --slate: #e2e8f0;
  --stone: #e7e5e4;
  --pine: #e6f2ed;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  padding: 28px 0 18px;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d6d3d1;
  border-radius: 999px;
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 360px;
  min-width: 280px;
}

.panel.tight {
  max-width: 520px;
}

.hero {
  padding: 28px 0 36px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 22px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid #cbd5f5;
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid #cbd5f5;
}

.section {
  padding: 42px 0;
}

.bg-hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.bg-hero .page {
  position: relative;
  z-index: 1;
}

.bg-hero .panel p,
.bg-hero .section-note,
.bg-hero .pill {
  color: #e5e7eb;
}

.bg-hero .pill {
  background: rgba(17, 24, 39, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-hero .btn.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
}

.bg-quiet {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f172a;
}

.bg-quiet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.76);
}

.bg-quiet .page {
  position: relative;
  z-index: 1;
}

.bg-quiet .notice {
  background: rgba(255, 255, 255, 0.86);
}

.bg-workshop {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.bg-workshop .page {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.section-note {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: var(--muted);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--sand);
}

.frame-slate {
  background-color: var(--slate);
}

.frame-stone {
  background-color: var(--stone);
}

.frame-pine {
  background-color: var(--pine);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  font: inherit;
  background: #ffffff;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111827;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

.footer {
  padding: 36px 0 60px;
  border-top: 1px solid #e5e7eb;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 28px 0 48px;
}

.legal-page h1 {
  margin-bottom: 14px;
}

.notice {
  padding: 14px 16px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  margin: 18px 0;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-grid .image-frame {
  flex: 1 1 220px;
  min-height: 180px;
}

.small-text {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
