:root {
  --ink: #17211d;
  --muted: #65716a;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #dedfd8;
  --soft: #f0eee7;
  --orange: #de552d;
  --orange-dark: #b93c1f;
  --green: #143f32;
  --shadow: 0 18px 55px rgba(26, 44, 36, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 7%, rgba(222, 85, 45, 0.10), transparent 24rem),
    var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}

button, input { font: inherit; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.brand-symbol { width: 40px; height: 40px; object-fit: contain; }
.brand-wordmark { width: 112px; height: auto; display: block; }

.edition {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 50px auto 110px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.065em;
}

.intro {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.facts {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.fact { padding: 18px 16px 0 0; }
.fact + .fact { padding-left: 16px; border-left: 1px solid var(--line); }
.fact span, .fact strong { display: block; }
.fact span { color: var(--muted); font-size: 0.76rem; }
.fact strong { margin-top: 5px; font-size: 0.98rem; }

.product-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 63, 50, 0.10);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-wrap { padding: 16px; }
.product-card img { display: block; width: 100%; height: auto; border-radius: 18px; }
.product-card figcaption {
  padding: 15px 22px 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}
.product-card a { color: var(--orange-dark); font-weight: 700; }

.order-section {
  padding: 100px max(20px, calc((100% - 780px) / 2)) 120px;
  color: var(--ink);
  background: #f2f0e9;
}

.section-heading { margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 12px; font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.045em; }
.section-heading > p:last-child { max-width: 570px; margin: 0; color: var(--muted); }

.order-form { display: grid; gap: 22px; }
.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(26, 44, 36, 0.04);
}

.size-card { padding-bottom: 0; overflow: hidden; }
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.size-control > label { display: block; margin-bottom: 8px; font-weight: 800; }
.stepper {
  height: 50px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.stepper button {
  height: 100%;
  border: 0;
  color: var(--green);
  background: var(--soft);
  cursor: pointer;
  font-size: 1.25rem;
}
.stepper button:hover { background: #e5e2d8; }
.stepper input {
  width: 100%;
  border: 0;
  text-align: center;
  font-weight: 800;
  appearance: textfield;
}
.stepper input::-webkit-inner-spin-button { appearance: none; }

.total-panel {
  margin: 30px -34px 0;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  background: var(--green);
}
.total-panel span, .total-panel small { display: block; }
.total-panel span { font-weight: 700; }
.total-panel small { margin-top: 2px; color: rgba(255,255,255,0.68); }
.total-panel > strong { font-family: "Manrope", sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem); }

.card-heading { margin-bottom: 28px; display: flex; gap: 15px; align-items: flex-start; }
.card-heading h3 { margin-bottom: 5px; font-size: 1.25rem; }
.card-heading p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.card-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(222,85,45,0.12);
  font-size: 0.75rem;
  font-weight: 800;
}

.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { font-size: 0.86rem; font-weight: 700; }
.field small { color: var(--muted); font-weight: 400; }
.field .field-help { margin-top: -1px; font-size: 0.76rem; line-height: 1.45; }
.field input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}
.field input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(222,85,45,0.12); }

.payment-note {
  margin-bottom: 22px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 12px;
  color: #24473b;
  background: #ecf4f0;
  font-size: 0.9rem;
}
.payment-note p { margin: 0; }
.note-icon { flex: 0 0 auto; font-weight: 800; }

.bank-details {
  margin-bottom: 22px;
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(20, 63, 50, 0.18);
  border-radius: 14px;
  background: var(--paper);
}

.bank-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) 1.5fr;
  gap: 12px;
  align-items: center;
}

.bank-row > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.bank-iban-row { grid-template-columns: minmax(130px, 0.7fr) 1.5fr auto; }
.bank-iban-row strong { overflow-wrap: anywhere; font-family: "Manrope", sans-serif; letter-spacing: 0.035em; }

.copy-button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--green);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.copy-button:hover { border-color: var(--orange); color: var(--orange-dark); }
.copy-status { min-height: 1em; color: var(--green); font-size: 0.78rem; font-weight: 700; }

.upload {
  min-height: 150px;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1.5px dashed #adb5af;
  border-radius: 15px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.upload:hover, .upload.is-selected { border-color: var(--orange); background: #fff8f4; }
.upload input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.upload-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-weight: 800;
}
.upload > span:last-child { color: var(--muted); font-size: 0.8rem; }
.upload + .field-error + .field { margin-top: 18px; }

.field-error { min-height: 1.2em; margin: 7px 0 0; color: #b52e1d; font-size: 0.82rem; font-weight: 700; }
.hidden-field { position: absolute; left: -9999px; }

.timeline-note {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(222,85,45,0.24);
  border-radius: 18px;
  background: #fff8f4;
}
.timeline-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}
.timeline-note p { margin: 4px 0 0; color: var(--muted); font-size: 0.9rem; }

.consent { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.88rem; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.consent span { flex: 1; }

.submit-button {
  min-height: 60px;
  padding: 15px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--orange);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(185,60,31,0.22);
}
.submit-button:hover { background: var(--orange-dark); }
.submit-help { margin: -12px 0 0; color: var(--muted); text-align: center; font-size: 0.8rem; }

footer {
  padding: 32px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.82rem;
}

.footer-brand { display: inline-flex; gap: 10px; align-items: center; }
.footer-brand .brand-symbol { width: 34px; height: 34px; }
.footer-brand .brand-wordmark { width: 96px; }

@media (max-width: 840px) {
  .hero { margin-top: 28px; grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 650px; }
  .product-card { max-width: 700px; }
}

@media (max-width: 580px) {
  .topbar, .hero { width: min(100% - 28px, 1180px); }
  .edition { display: none; }
  .hero { margin-bottom: 70px; }
  h1 { font-size: 3.1rem; }
  .facts { grid-template-columns: 1fr; }
  .fact, .fact + .fact { padding: 13px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .order-section { padding-top: 70px; padding-bottom: 80px; }
  .form-card { padding: 22px; border-radius: 17px; }
  .size-card { padding-bottom: 0; }
  .size-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .total-panel { margin: 24px -22px 0; padding: 20px 22px; align-items: flex-end; }
  .total-panel small { font-size: 0.72rem; }
  .fields-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .bank-row, .bank-iban-row { grid-template-columns: 1fr; gap: 4px; }
  .copy-button { margin-top: 6px; justify-self: start; }
  .timeline-note { align-items: flex-start; }
  footer { flex-direction: column; gap: 5px; }
}

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