:root {
  --ink: #20150f;
  --paper: #edd0a0;
  --paper-dark: #c99a59;
  --red: #9f2417;
  --red-deep: #5d120e;
  --cream: #fff0c8;
  --coal: #15110d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(rgba(95, 18, 14, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 18, 14, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 10px solid var(--red-deep);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/olda_plakat.png");
  background-size: cover;
  background-position: 54% center;
  filter: saturate(1.02) contrast(1.05);
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.9) 0%, rgba(21, 17, 13, 0.58) 42%, rgba(21, 17, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(21, 17, 13, 0.78) 0%, rgba(21, 17, 13, 0) 52%);
  z-index: -2;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.topbar a {
  padding: 9px 12px;
  border: 2px solid rgba(255, 240, 200, 0.58);
  background: rgba(93, 18, 14, 0.55);
}

.hero__content {
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(78px, 12vw, 138px) clamp(18px, 6vw, 84px);
  color: var(--cream);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.65);
}

.stamp,
.eyebrow {
  margin: 0 0 14px;
  color: var(--cream);
  display: inline-block;
  background: var(--red);
  border: 3px solid rgba(255, 240, 200, 0.78);
  padding: 8px 12px;
  transform: rotate(-1.2deg);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 650px;
  font-size: clamp(4.2rem, 13vw, 11rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  font-weight: 800;
}

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

.button,
.report-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 3px solid var(--cream);
  color: var(--cream);
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--coal);
}

.button--ghost {
  background: rgba(21, 17, 13, 0.72);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 34px);
  padding: 16px;
  color: var(--cream);
  background: var(--red);
  border-top: 5px solid var(--cream);
  text-transform: uppercase;
  font-size: clamp(1rem, 2.4vw, 2rem);
  font-weight: 900;
}

.notice,
.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.notice {
  padding: 28px 0 0;
  font-weight: 800;
}

.notice p {
  border: 3px dashed var(--red);
  padding: 18px;
  background: rgba(255, 240, 200, 0.58);
  text-align: center;
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.split,
.report,
.dossier {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
}

.section .eyebrow {
  color: var(--cream);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-grid,
.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature,
.price-list article,
.report-form {
  border: 4px solid var(--ink);
  background: rgba(255, 240, 200, 0.66);
  box-shadow: 8px 8px 0 var(--red-deep);
}

.feature,
.price-list article {
  min-height: 260px;
  padding: 22px;
}

.feature__icon {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 3rem;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.feature p,
.price-list span,
.report p {
  font-weight: 700;
}

.pricing {
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.dossier {
  align-items: start;
}

.dossier__intro p:not(.eyebrow) {
  max-width: 520px;
  font-weight: 800;
}

.dossier__folder {
  position: relative;
  border: 5px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(159, 36, 23, 0.14), transparent 38%),
    #f5d99f;
  box-shadow: 10px 10px 0 var(--red-deep);
  padding: 44px 24px 24px;
  transform: rotate(0.4deg);
}

.folder-tab {
  position: absolute;
  top: -25px;
  left: 18px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  background: var(--paper-dark);
  padding: 8px 18px;
  font-weight: 900;
}

dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

dl div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) 1fr;
  gap: 12px;
  border-bottom: 2px dashed rgba(32, 21, 15, 0.42);
  padding-bottom: 12px;
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--red-deep);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  font-weight: 800;
}

.rubber-stamp,
.form-stamp {
  color: var(--red);
  border: 5px solid var(--red);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.rubber-stamp {
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: 10px 16px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 0.95;
  transform: rotate(-9deg);
  opacity: 0.86;
}

.price-list article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.price-list p {
  margin-bottom: 0;
  color: var(--red);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
}

.gifts {
  border-bottom: 4px solid var(--red);
}

.gifts__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.gifts__header p:not(.eyebrow) {
  font-weight: 800;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gift-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  border: 4px solid var(--ink);
  background: rgba(255, 240, 200, 0.68);
  box-shadow: 8px 8px 0 var(--red-deep);
  overflow: hidden;
}

.gift-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #fff6dd;
}

.gift-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 10px;
  padding: 18px;
}

.gift-card__body p {
  margin-bottom: 0;
  font-weight: 700;
}

.gift-card__body strong {
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1;
}

.gift-button {
  min-height: 46px;
  margin-top: 6px;
  align-self: end;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--coal);
}

.gift-notice {
  display: none;
  margin-top: 44px;
  border: 5px solid var(--red);
  background: var(--cream);
  color: var(--red-deep);
  padding: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-1deg) scale(0.96);
  opacity: 0;
}

.gift-notice.is-visible {
  display: block;
  animation: stampIn 180ms ease-out forwards;
}

@media (max-width: 1040px) {
  .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.report-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 3px solid var(--ink);
  background: #fff6dd;
  color: var(--ink);
  padding: 13px 12px;
  font: inherit;
  font-weight: 700;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.report-form button {
  width: fit-content;
  color: var(--cream);
  font: inherit;
}

.form-stamp {
  display: none;
  width: min(100%, 420px);
  padding: 12px;
  transform: rotate(-2deg) scale(0.92);
  opacity: 0;
}

.form-stamp.is-visible {
  display: block;
  animation: stampIn 180ms ease-out forwards;
}

.form-stamp.is-error {
  color: var(--ink);
  border-color: var(--ink);
  background: #fff6dd;
}

.form-stamp.is-round {
  width: 210px;
  min-height: 210px;
  display: none;
  place-items: center;
  border-radius: 50%;
  padding: 26px;
  line-height: 1.12;
  transform: rotate(-7deg) scale(0.9);
}

.form-stamp.is-round.is-visible {
  display: grid;
}

@keyframes stampIn {
  to {
    transform: rotate(-2deg) scale(1);
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 86vh;
  }

  .hero__image {
    background-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(21, 17, 13, 0.84) 0%, rgba(21, 17, 13, 0.48) 62%, rgba(21, 17, 13, 0.08) 100%),
      linear-gradient(0deg, rgba(21, 17, 13, 0.88) 0%, rgba(21, 17, 13, 0.05) 70%);
  }

  .topbar {
    justify-content: center;
    flex-wrap: wrap;
    padding: 14px;
  }

  .hero__content {
    margin: 0 auto 104px;
  }

  .split,
  .report,
  .dossier,
  .feature-grid,
  .price-list,
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
  }

  .gift-card {
    grid-template-rows: minmax(240px, 56vw) 1fr;
  }

  .ticker {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  dl div {
    grid-template-columns: 1fr;
  }

  .rubber-stamp {
    position: static;
    width: fit-content;
    margin-top: 20px;
  }
}

@media (max-width: 520px) {
  .button,
  .report-form button {
    width: 100%;
  }

  .hero__content {
    width: min(100% - 24px, 720px);
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }
}
