@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --paper: #f5efe6;
  --ink: #1d1a17;
  --accent: #d24c2f;
  --accent-dark: #9c3a25;
  --sea: #1f5f5b;
  --gold: #d9a35a;
  --muted: #5f5750;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(29, 26, 23, 0.16);
  --shadow: 0 30px 60px rgba(29, 26, 23, 0.15);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, #fef6e8 0%, transparent 55%),
    radial-gradient(circle at 90% 10%, #f1ddc1 0%, transparent 50%),
    linear-gradient(160deg, #f7efe2 0%, #f1e7da 50%, #efe4d6 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle, rgba(210, 76, 47, 0.35), transparent 70%);
  top: -120px;
  right: -120px;
}

body::after {
  background: radial-gradient(circle, rgba(31, 95, 91, 0.35), transparent 70%);
  bottom: -140px;
  left: -140px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  position: relative;
  z-index: 1;
  padding: 32px clamp(16px, 4vw, 48px) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 72px;
  object-fit: contain;
}

.brand-name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding-bottom: 48px;
}

.hero-copy {
  animation: fadeUp 0.7s ease both;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--sea);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210, 76, 47, 0.3);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.button.small {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-color: rgba(210, 76, 47, 0.35);
  background: rgba(210, 76, 47, 0.08);
  color: var(--accent-dark);
}

.button.small:hover {
  background: rgba(210, 76, 47, 0.18);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.button.small:focus-visible {
  outline: 2px solid rgba(210, 76, 47, 0.35);
  outline-offset: 2px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  background: rgba(31, 95, 91, 0.1);
  color: var(--sea);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.hero-card img {
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  object-fit: contain;
  height: 240px;
}

.series {
  color: var(--sea);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.hero-card-body p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 24px;
}

.section-heading p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.publisher {
  margin-top: 56px;
}

.publisher .section-heading a {
  color: var(--accent);
  font-weight: 600;
}

.table-wrap {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.product-table th,
.product-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.product-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.product-table tr:last-child td {
  border-bottom: none;
}

.product-table .title {
  font-weight: 600;
}

.product-table .button {
  white-space: nowrap;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3) {
  animation-delay: 0.2s;
}

.product-card img {
  border-radius: 16px;
  height: 220px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.product-placeholder {
  border-radius: 16px;
  height: 220px;
  background: linear-gradient(
    140deg,
    rgba(31, 95, 91, 0.12),
    rgba(210, 76, 47, 0.12)
  );
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  padding: 12px;
}

.product-body .description {
  color: var(--muted);
  line-height: 1.5;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  margin: 12px 0 16px;
}

.order {
  margin-top: 56px;
}

.order-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.template-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
}

.copy-status {
  font-size: 0.9rem;
  color: var(--sea);
}

.contact-panel {
  background: rgba(31, 95, 91, 0.08);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(31, 95, 91, 0.2);
}

.contact-line {
  margin: 8px 0;
  color: var(--muted);
}

.order-form {
  margin-top: 72px;
}

.form-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(210, 76, 47, 0.25);
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  font-size: 0.95rem;
  color: var(--sea);
}

.form-status[data-state="error"] {
  color: var(--accent-dark);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.impressum {
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
}

.impressum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.5;
}

.small {
  color: var(--muted);
  margin: 6px 0;
}

.legal {
  margin-top: 20px;
  color: var(--muted);
}

.fineprint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-actions,
  .hero-notes,
  .order-actions,
  .template-note {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-card img,
  .product-card img,
  .product-placeholder {
    height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
