:root {
  --cream: #fff8f4;
  --rose: #c9787a;
  --rose-deep: #a85d5f;
  --warm: #4a342f;
  --muted: #8b6f68;
  --cream-dark: #f5ebe6;
  --border: rgba(168, 93, 95, 0.18);
  --shadow: 0 18px 48px rgba(74, 52, 47, 0.08);
  --radius: 18px;
  --max: 1120px;
  --header-offset: calc(4.5rem + 2rem + 1px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--warm);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rose);
}

h1,
h2,
h3,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--warm);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

main {
  flex: 1 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--rose-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.nav a.btn-primary,
.nav a.btn-primary:hover {
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-color: var(--rose-deep);
  box-shadow: 0 10px 28px rgba(168, 93, 95, 0.28);
}

.btn-primary:hover {
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--rose-deep);
  border-color: var(--border);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-price {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  color: var(--rose-deep);
}

.hero-price strong {
  font-weight: 700;
}

.hero-poster-frame {
  margin: 0;
  width: min(100%, 21rem);
  margin-inline: auto;
}

.hero-poster-frame img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.poster-frame {
  position: relative;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, #fff, var(--cream-dark));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(201, 120, 122, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}

.poster-frame img {
  border-radius: 10px;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-block: 1px solid var(--border);
}

.section-alt + .section-alt {
  border-top: none;
}

main > .section-alt:last-child {
  border-bottom: none;
}

.landing-page > .section:not(.hero),
.order-page > .section:not(.order-page-intro) {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.landing-page .privacy-box,
.landing-page .coming-soon-box {
  background: #fff;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
}

.section-intro {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  text-align: center;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(74, 52, 47, 0.04);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(201, 120, 122, 0.12);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.privacy-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(201, 120, 122, 0.08), rgba(255, 248, 244, 0.9));
  border: 1px solid var(--border);
}

.privacy-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.privacy-box li + li {
  margin-top: 0.45rem;
}

.coming-soon-box {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #fff 0%, var(--cream-dark) 100%);
  border: 1px solid var(--border);
}

.order-section {
  text-align: center;
}

.order-success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.order-success-actions .btn {
  width: min(100%, 18rem);
}

.order-flow {
  width: 100%;
  max-width: 28rem;
  margin: 2rem auto 0;
  text-align: left;
}

.order-form {
  display: grid;
  gap: 1.1rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.order-form-row {
  display: grid;
  gap: 0.4rem;
}

.order-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--warm);
}

.order-input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--warm);
  background: var(--cream);
}

.order-input:focus {
  outline: 2px solid rgba(201, 120, 122, 0.35);
  outline-offset: 1px;
}

.order-file {
  padding: 0.55rem 0.75rem;
  background: #fff;
}

.order-hint {
  font-size: 0.84rem;
  color: var(--muted);
}

.order-consent-block {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 248, 244, 0.9);
  border: 1px solid rgba(201, 120, 122, 0.16);
}

.order-consent-block-pay {
  margin-bottom: 0.35rem;
}

.order-consent-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.order-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--warm);
  cursor: pointer;
}

.order-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--rose);
}

.order-consent a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-consent-error {
  margin: 0;
  font-size: 0.84rem;
  color: #b42318;
}

.order-name-detected {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.order-name-detected strong {
  color: var(--warm);
  font-weight: 600;
}

.order-name-row {
  gap: 0.35rem;
}

#order-names-fields {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 0.25rem;
}

.order-name-label {
  margin-bottom: 0;
}

.order-name-source {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.order-name-input::placeholder {
  color: rgba(92, 74, 66, 0.42);
  opacity: 1;
}

.order-name-input::-webkit-input-placeholder {
  color: rgba(92, 74, 66, 0.42);
}

.order-name-input:focus::placeholder {
  color: rgba(92, 74, 66, 0.28);
}

.order-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.order-panel {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.order-panel-error {
  border-color: rgba(168, 93, 95, 0.35);
  background: linear-gradient(180deg, #fff, #fff6f4);
}

.order-panel-title {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--warm);
}

.order-panel-text {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.order-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: var(--cream-dark);
  overflow: hidden;
  margin: 1rem 0;
}

.order-progress-bar {
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  transition: width 0.6s ease;
}

.order-progress-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.order-poster-preview {
  margin: 0 auto 1.35rem;
  width: 100%;
}

.order-review-block {
  margin-bottom: 1rem;
}

.order-review-block .order-poster-preview {
  margin-bottom: 0;
}

.order-pay-lead {
  margin-top: -0.35rem;
}

.order-rename-teaser {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.98), rgba(255, 248, 244, 0.92));
  border: 1px solid rgba(201, 120, 122, 0.14);
}

.order-rename-teaser-lead {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.order-rename-teaser .order-name-detected {
  margin: 0 0 0.8rem;
}

.order-rename-toggle {
  width: 100%;
  margin: 0;
  min-height: 2.65rem;
  box-shadow: 0 4px 14px rgba(168, 93, 95, 0.08);
}

.order-rename-toggle:hover {
  color: var(--rose-deep);
  border-color: rgba(201, 120, 122, 0.45);
  background: #fff8f4;
}

.order-review-block + #order-panel-names {
  margin-top: 0;
}

.order-review-block + #order-panel-names {
  padding-top: 0.25rem;
  border-top: none;
  box-shadow: none;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.order-names-rename-block {
  margin: 0 0 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: rgba(255, 248, 244, 0.95);
  border: 1px solid rgba(201, 120, 122, 0.16);
}

.order-names-rename-form {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

#order-panel-names .order-consent-block-pay {
  margin-top: 0.15rem;
}

#order-panel-names .order-submit {
  width: 100%;
}

#order-panel-names .order-new-from-pay {
  width: 100%;
  margin-top: 0.55rem;
}

.order-poster-preview-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0.65rem;
  box-sizing: border-box;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, #fff, var(--cream-dark));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.order-poster-preview-shell::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(201, 120, 122, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}

.order-poster-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border-radius: 10px;
  background: #fff8f4;
}

.order-poster-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.order-pending-banner {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 120, 122, 0.28);
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.order-pending-banner-text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.order-pending-banner-actions {
  display: grid;
  gap: 0.55rem;
}

.order-new-from-pay {
  width: 100%;
  margin-top: 0.55rem;
}

.order-api-warning {
  max-width: 28rem;
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff3cd;
  color: #6b4f1d;
  font-size: 0.9rem;
  text-align: left;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--warm);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}

#view-poster-btn {
  margin-bottom: 0.75rem;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 2.5rem 0 2rem;
  min-height: 9.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1.5rem 1.75rem;
  align-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  justify-content: flex-end;
  padding-top: 0.35rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.35;
}

.footer-links a:hover {
  color: var(--rose-deep);
}

.footer-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.legal-meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: var(--warm);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.faq-page .faq-list {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.faq-item {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(74, 52, 47, 0.05);
}

.faq-item h2 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--warm);
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-item p strong {
  color: var(--rose-deep);
  font-weight: 600;
}

.faq-cta {
  margin: 2.25rem 0 0;
  max-width: 44rem;
  color: var(--muted);
}

.placeholder {
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(201, 120, 122, 0.12);
  color: var(--rose-deep);
  font-size: 0.92em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-banner,
.cookie-settings {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  padding: 1rem;
}

.cookie-banner-inner,
.cookie-settings-panel {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.cookie-banner-copy h2,
.cookie-settings-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.cookie-banner-copy p,
.cookie-settings-intro,
.cookie-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner-actions,
.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--rose-deep);
  border-color: var(--border);
}

.cookie-settings-panel {
  position: relative;
  max-height: min(85vh, 32rem);
  overflow: auto;
}

.cookie-settings-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-close:hover {
  color: var(--rose-deep);
  background: rgba(201, 120, 122, 0.08);
}

.cookie-settings-intro {
  margin-bottom: 1.25rem;
}

.cookie-option {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.cookie-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.cookie-badge {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(201, 120, 122, 0.12);
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch-ui {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.cookie-switch-ui::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(74, 52, 47, 0.18);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch-ui {
  background: var(--rose);
  border-color: var(--rose);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(1.2rem);
}

.cookie-settings-actions {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions,
  .cookie-settings-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn,
  .cookie-settings-actions .btn {
    flex: 1 1 100%;
  }
}

.order-page-intro {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.export-tip {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(201, 120, 122, 0.1);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 40rem;
}

.export-tip strong {
  color: var(--rose-deep);
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.export-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(74, 52, 47, 0.04);
}

.export-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.export-platform {
  display: grid;
  place-items: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(201, 120, 122, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
  line-height: 1;
}

.export-platform-wide {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  padding: 0 0.65rem;
}

.export-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.export-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.export-steps li + li {
  margin-top: 0.55rem;
}

.export-steps strong {
  color: var(--warm);
  font-weight: 600;
}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  body {
    overflow-x: clip;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .site-header .inner {
    min-height: 3.75rem;
    padding: 0.75rem 0;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  .nav .btn {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .hero-grid,
  .cards,
  .steps,
  .privacy-box,
  .footer-grid,
  .export-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-grid {
    gap: 2rem;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 18rem;
  }

  .hero-poster-frame {
    width: min(100%, 15.5rem);
  }

  .poster-frame {
    padding: 0.9rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.35rem);
  }

  .section-intro {
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
  }

  .privacy-box,
  .coming-soon-box {
    padding: 1.35rem;
  }

  .landing-page #datenschutz .privacy-box > div,
  .landing-page #demnaechst .coming-soon-box {
    text-align: center;
  }

  .landing-page #datenschutz .section-title,
  .landing-page #demnaechst .section-title {
    text-align: center !important;
  }

  .landing-page #demnaechst .coming-soon-box p {
    margin-inline: auto !important;
  }

  .order-page-intro {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .order-page-intro .section-title,
  .order-page-intro .section-intro {
    text-align: left;
  }

  .order-form,
  .order-panel {
    padding: 1.25rem;
  }

  .order-flow {
    margin-top: 1.5rem;
  }

  .order-section .container > .btn {
    display: inline-flex;
    width: 100%;
    max-width: 20rem;
  }

  .order-section .container > .btn + .btn {
    margin-top: 0.65rem;
  }

  .site-footer {
    padding: 2rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    min-height: unset;
  }

  .footer-grid {
    gap: 1rem;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.35rem 0.8rem;
    padding-top: 0.85rem;
  }

  .footer-links a {
    font-size: 0.84rem;
  }

  .footer-note {
    margin-top: 0.75rem;
    font-size: 0.78rem;
  }

  .site-footer .brand strong {
    font-size: 1.2rem;
  }

  .legal-page {
    padding: 2.25rem 0 2.75rem;
  }

  .legal-page h2 {
    font-size: 1.3rem;
  }

  .nav .hide-mobile {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.15rem, var(--max));
  }

  .site-header .inner {
    gap: 0.45rem;
    align-items: center;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand strong {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
  }

  .nav {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .nav a:not(.btn) {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .nav .btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.76rem;
    min-height: 2.15rem;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(168, 93, 95, 0.2);
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
  }

  .hero {
    padding: 2rem 0 1.75rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 0.96rem;
    margin-bottom: 1.35rem;
  }

  .hero-actions .btn {
    max-width: none;
  }

  .hero-poster-frame {
    width: min(100%, 13.5rem);
  }

  .section {
    padding: 2.15rem 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section-intro {
    margin-bottom: 1.5rem;
    font-size: 0.94rem;
  }

  .card,
  .step,
  .export-card {
    padding: 1.15rem;
  }

  .card h3,
  .export-card h3 {
    font-size: 1.2rem;
  }

  .step h3 {
    font-size: 1.12rem;
  }

  .btn {
    min-height: 2.75rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.92rem;
  }

  .site-footer {
    padding: 1rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    gap: 0.75rem;
  }

  .footer-links {
    gap: 0.3rem 0.65rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-note {
    margin-top: 0.55rem;
    font-size: 0.74rem;
  }

  .site-footer .brand strong {
    font-size: 1.1rem;
  }

  .order-form,
  .order-panel {
    padding: 1.05rem;
    border-radius: calc(var(--radius) - 2px);
  }

  .order-panel-title {
    font-size: 1.35rem;
  }

  .order-input {
    padding: 0.78rem 0.85rem;
    font-size: 16px;
  }

  .order-section .container > .btn {
    max-width: none;
  }

  .export-steps {
    font-size: 0.9rem;
    padding-left: 1.05rem;
  }

  .cookie-banner,
  .cookie-settings {
    padding: 0.65rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-inner,
  .cookie-settings-panel {
    padding: 1rem 1.1rem;
  }

  .cookie-banner-copy h2,
  .cookie-settings-panel h2 {
    font-size: 1.2rem;
  }
}
