:root {
  --ink: #161616;
  --muted: #68645f;
  --brand: #b48a65;
  --brand-dark: #806044;
  --cream: #f6f1eb;
  --line: #e7e2dc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.header-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

main {
  flex: 1;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) 0 clamp(72px, 9vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.35rem, 6vw, 5.9rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.locale-nl h1 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.editorial > h2 {
  margin: 42px 0 20px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.conditions {
  margin-top: 30px;
  border-top: 1px solid var(--ink);
}

.condition {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.condition-number {
  padding-top: 2px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.condition p {
  margin: 0;
  color: #34312e;
  font-size: 0.98rem;
  font-weight: 520;
  line-height: 1.7;
}

.payment-card {
  position: sticky;
  top: 32px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #e2d9cf;
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 24px 80px rgba(72, 53, 37, 0.09);
}

.payment-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 34px;
  background: var(--brand);
}

.payment-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.payment-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stripe-area {
  min-height: 178px;
  margin: 34px -8px 16px;
  display: grid;
  align-items: center;
}

.stripe-status,
.stripe-error {
  margin: 0;
  padding: 18px;
  border: 1px solid #d9cdbf;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.stripe-error {
  border-color: #cdaea2;
  color: #6a3027;
}

.stripe-widget {
  min-width: 0;
  display: none;
  justify-content: center;
}

.stripe-widget.is-ready {
  display: flex;
}

.secure-note {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #ded5cc;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.secure-note span {
  margin-right: 8px;
  color: #27875c;
  font-size: 0.6rem;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .payment-card {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    max-width: 170px;
    height: 34px;
  }

  .hero {
    padding-top: 54px;
    gap: 46px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .editorial > h2 {
    margin-top: 34px;
  }

  .condition {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .condition p {
    font-size: 0.92rem;
  }

  .payment-card {
    padding: 28px 20px;
  }

  .stripe-area {
    margin-inline: -14px;
  }

  .footer-inner {
    min-height: 106px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
