:root {
  --paper: #f5f5f3;
  --paper-deep: #e8e8e5;
  --cream: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #1c1c1c;
  --muted: #5c5c5a;
  --accent: #00747f;
  --accent-deep: #005860;
  --border: rgb(10 10 10 / 0.1);
  --shadow: 0 0 0 1px rgb(10 10 10 / 0.08), 0 1px 2px -1px rgb(10 10 10 / 0.08), 0 2px 4px 0 rgb(10 10 10 / 0.05);
  --shadow-lift: 0 0 0 1px rgb(10 10 10 / 0.08), 0 16px 40px -16px rgb(10 10 10 / 0.22);
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; background: var(--paper); color: var(--ink); }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; height: auto; outline: 1px solid rgb(10 10 10 / 0.1); outline-offset: -1px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 1.4rem + 4vw, 5.25rem); }
h2 { font-size: clamp(2rem, 1.3rem + 2.2vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; text-wrap: pretty; }
em { font-style: italic; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }
address { font-style: normal; }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 2rem; } }

.kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.kicker.light { color: #e8e8e5; }
.lead { margin-top: 1.25rem; max-width: 36rem; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-soft); }
.lead.light, .muted.light { color: #e8e8e5; }
.muted { color: var(--muted); }
.narrow { max-width: 48rem; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 2.5rem; }
.pt-0 { padding-top: 0 !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgb(245 245 243 / 0.95);
  backdrop-filter: blur(8px);
}
.bar {
  max-width: 72rem;
  margin: 0 auto;
  height: 4rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .bar { padding: 0 2rem; } }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-size: 1.125rem; letter-spacing: -0.02em; }
.mark { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.9375rem; font-weight: 500; color: var(--ink-soft); }
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--paper);
}
.nav-mobile[hidden] {
  display: none;
}
.nav-mobile a { display: flex; align-items: center; min-height: 3rem; font-size: 1.0625rem; font-weight: 500; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 0;
  border-radius: 0.75rem;
  transition: transform 150ms var(--ease), background 150ms var(--ease);
}
.btn:active { transform: scale(0.96); }
.btn-sm { height: 2.5rem; padding: 0 1rem; font-size: 0.875rem; border-radius: 0.5rem; }
.btn-lg { height: 3.5rem; padding: 0 1.75rem; font-size: 1.0625rem; border-radius: 0.75rem; }
.btn { height: 3rem; padding: 0 1.25rem; font-size: 0.9375rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); box-shadow: var(--shadow); }
.btn-outline:hover { background: var(--cream); }
.btn-ghost { background: transparent; }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: 0 0 0 1px rgb(255 255 255 / 0.25); }
.btn-ghost-light:hover { background: #1c1c1c; }
.actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 640px) { .actions { flex-direction: row; } }

.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 6rem 0; } }
.section.tint { background: rgb(232 232 229 / 0.4); }
.hero { background: var(--ink); color: #fff; border-bottom: 1px solid rgb(255 255 255 / 0.08); padding: 3rem 0; }
@media (min-width: 1024px) { .hero { padding: 4rem 0; } }
.hero-grid, .split-plain, .product-grid, .anfrage-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .split-plain, .product-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .product-grid { grid-template-columns: 7fr 5fr; align-items: start; }
  .anfrage-grid { grid-template-columns: 5fr 7fr; align-items: start; }
}
.hero h1 { margin-top: 1.25rem; }
.hero .lead { color: #e8e8e5; }

.media-frame { overflow: hidden; }
.media-frame.round { border-radius: 1.5rem; }
.media-frame.wide img { width: 100%; max-height: 32rem; object-fit: cover; aspect-ratio: 16/9; }
.media-frame img, .split img, .card-media img { width: 100%; height: 100%; object-fit: cover; }
.hero .media-frame { border-radius: 1.5rem; aspect-ratio: 4/3; }
@media (min-width: 1024px) { .hero .media-frame { aspect-ratio: auto; height: 28rem; } }

.crop-frame { position: relative; }
.crop-frame::before, .crop-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #fff;
  pointer-events: none;
  z-index: 2;
}
.crop-frame::before { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.crop-frame::after { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

.grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-deep); }
.card-media.ratio-wide { aspect-ratio: 16/10; }
.card:hover .card-media img { transform: scale(1.03); }
.card-media img { transition: transform 500ms var(--ease); }
.card-body { padding: 1.25rem 1.25rem 1.5rem; }
.card-body h3 { margin-top: 0.4rem; }
.card-body .muted { margin-top: 0.4rem; font-size: 0.9375rem; }

.row-between { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) {
  .row-between { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.text-link { font-size: 0.9375rem; font-weight: 500; color: var(--accent-deep); text-decoration: underline; text-underline-offset: 4px; }

.split {
  display: grid;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--cream);
}
.split.dark { background: var(--ink); color: #fff; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { min-height: 18rem; object-fit: cover; width: 100%; height: 100%; }
.pad { padding: 2rem; }
@media (min-width: 640px) { .pad { padding: 3rem; } }
.split-plain.reverse { }
@media (min-width: 1024px) {
  .split-plain.reverse > :first-child { order: 2; }
}

.steps { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.5rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.steps span { font-family: var(--display); font-size: 1.125rem; color: var(--accent); }
.steps p { margin-top: 0.25rem; font-size: 0.875rem; color: #e8e8e5; }

.band {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .band { flex-direction: row; align-items: center; justify-content: space-between; padding: 2rem 2.5rem; }
}
.band h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-top: 0.5rem; }
.band .muted { margin-top: 0.5rem; max-width: 32rem; font-size: 0.9375rem; }

.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.quote blockquote { font-family: var(--display); font-size: 1.35rem; line-height: 1.3; letter-spacing: -0.02em; }
.quote figcaption { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted); }

.cta {
  border-radius: 1.5rem;
  background: var(--ink);
  color: #fff;
  padding: 3rem 1.5rem;
}
@media (min-width: 640px) { .cta { padding: 3rem; } }
.display { font-family: var(--display); font-size: clamp(2rem, 1.3rem + 2.2vw, 3.25rem); letter-spacing: -0.03em; line-height: 1.12; }
.cta .muted { margin-top: 1rem; max-width: 32rem; font-size: 0.875rem; }

.plain { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.5rem; color: var(--ink-soft); font-size: 0.9375rem; }
.plain.strong { gap: 1rem; }
.dots { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.5rem; font-size: 0.9375rem; color: var(--ink-soft); }
.dots li { display: flex; gap: 0.75rem; }
.dots li::before { content: ""; width: 4px; height: 4px; margin-top: 0.55rem; border-radius: 99px; background: var(--accent); flex-shrink: 0; }
.note { margin-top: 1.5rem; font-size: 0.9375rem; font-style: italic; color: var(--muted); }
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  height: 1.75rem;
  padding: 0 0.65rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--paper-deep);
}
.back { display: inline-flex; height: 2.75rem; align-items: center; font-size: 0.9375rem; font-weight: 500; color: var(--muted); }
.back:hover { color: var(--ink); }
.product-grid h1 { margin-top: 1rem; font-size: clamp(2rem, 1.3rem + 2.2vw, 3.25rem); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  height: 2.75rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.chip.is-on { background: var(--ink); color: var(--cream); box-shadow: none; }

.panel { border-radius: 1.5rem; background: var(--cream); box-shadow: var(--shadow); padding: 1.25rem; }
@media (min-width: 640px) { .panel { padding: 2rem; } }
.finder-grid, .planner-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .finder-grid { grid-template-columns: 5fr 7fr; }
  .planner-grid { grid-template-columns: 7fr 5fr; }
}
fieldset { border: 0; padding: 0; margin: 0 0 1.75rem; }
legend { margin-bottom: 0.75rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.choice-grid { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .choice-grid { grid-template-columns: 1fr 1fr; } }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 0;
  border-radius: 0.75rem;
  background: var(--cream);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 500;
}
.choice.paper { background: var(--paper); }
.choice.is-on { background: var(--accent); color: #fff; box-shadow: none; }
.choice small { display: block; margin-top: 0.15rem; font-size: 0.75rem; font-weight: 400; color: var(--muted); }
.choice.is-on small { color: rgb(255 255 255 / 0.8); }
.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 16rem;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  background: var(--paper);
}
.placeholder h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.placeholder p { margin-top: 0.75rem; max-width: 28rem; font-size: 0.9375rem; color: var(--muted); }

label { display: block; font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.4rem; }
input, textarea, select {
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}
textarea { min-height: 8rem; resize: vertical; }
.field { margin-bottom: 1rem; }
.form-error { margin-top: 1rem; font-size: 0.875rem; color: var(--accent); }
.preview {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--paper);
  font-size: 0.875rem;
  white-space: pre-wrap;
  color: var(--ink-soft);
}

.legal { max-width: 40rem; }
.prose { margin-top: 2rem; display: grid; gap: 1.25rem; font-size: 0.9375rem; line-height: 1.65; color: var(--ink-soft); }
.prose h2 { font-size: 1.25rem; color: var(--ink); }

.site-footer { background: var(--ink); color: #fff; border-top: 1px solid rgb(255 255 255 / 0.08); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 1.25rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding-left: 2rem; padding-right: 2rem; } }
.site-footer .brand { color: #fff; }
.site-footer .muted { color: #e8e8e5; margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; }
.site-footer .kicker { color: #e8e8e5; }
.site-footer address, .site-footer ul { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #e8e8e5; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.1); }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  font-size: 0.75rem;
  color: #e8e8e5;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.25rem 2rem; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: #e8e8e5; text-decoration: none; }
.footer-links a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .card, .btn, .card-media img { transition: none; }
}
