/* Christmas in the Community — BLOC Love + The Mamahood
   Palette from the flyer + BLOC Love logo: kraft, cream, holiday red, evergreen, gold. */

:root {
  --kraft: #d9c7a8;
  --kraft-deep: #c9b48e;
  --cream: #fbf6ec;
  --paper: #f4ecdc;
  --red: #b3161f;
  --red-deep: #8c0f17;
  --green: #0f8a3e;
  --green-deep: #0a5f2b;
  --gold: #d68a1c;
  --ink: #1c1a17;
  --ink-soft: #4a453d;
  --line: rgba(28, 26, 23, 0.14);
  --teal: #1d6f6b;

  --display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --body: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --accent: "Fraunces", Georgia, serif;

  --radius: 14px;
  --shadow: 0 18px 40px -20px rgba(28, 26, 23, 0.45);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--kraft);
  /* paper grain: two soft radial dots + a faint diagonal weave */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1.6px),
    radial-gradient(rgba(28, 26, 23, 0.06) 1px, transparent 1.6px),
    repeating-linear-gradient(
      135deg,
      transparent 0 6px,
      rgba(28, 26, 23, 0.025) 6px 7px
    );
  background-size:
    22px 22px,
    26px 26px,
    auto;
  background-position:
    0 0,
    11px 13px,
    0 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
}
small {
  font-weight: 600;
  color: var(--ink-soft);
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}
.skip:focus {
  left: 8px;
  z-index: 100;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 40px);
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--red);
}
.topbar__home {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.topbar__home img {
  border-radius: 50%;
  background: #fff;
}
.topbar__nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}
.topbar__nav a:not(.btn) {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.topbar__nav a:not(.btn):hover {
  border-bottom-color: var(--green);
}
@media (max-width: 640px) {
  .topbar__nav a:not(.btn) {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  padding: 12px 26px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 6px 0 rgba(28, 26, 23, 0.25);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 0 rgba(28, 26, 23, 0.25);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(28, 26, 23, 0.25);
}
.btn--red {
  background: var(--red);
  box-shadow: 0 6px 0 var(--red-deep);
}
.btn--red:hover {
  box-shadow: 0 9px 0 var(--red-deep);
}
.btn--green {
  background: var(--green);
  box-shadow: 0 6px 0 var(--green-deep);
}
.btn--green:hover {
  box-shadow: 0 9px 0 var(--green-deep);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2.5px var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  box-shadow: inset 0 0 0 2px var(--green);
  font-size: 19px;
}
.btn--ghost:hover {
  background: var(--green);
  color: #fff;
}
.btn--small {
  font-size: 17px;
  padding: 8px 16px 6px;
  box-shadow: 0 4px 0 var(--red-deep);
}
.btn--big {
  font-size: 26px;
  padding: 16px 36px 14px;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* ---------- Type ---------- */
.kicker {
  font-family: var(--display);
  letter-spacing: 0.18em;
  font-size: 18px;
  color: var(--red-deep);
  margin: 0 0 8px;
}
.kicker--dark {
  color: var(--green-deep);
}
.kicker__plus {
  color: var(--gold);
  padding: 0 4px;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.h2 em {
  color: var(--red);
  font-size: 0.9em;
}
.h2--center {
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 9vw, 110px) clamp(16px, 5vw, 48px) clamp(56px, 8vw, 96px);
  background:
    radial-gradient(
      1200px 500px at 20% -10%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  border-bottom: 6px solid var(--green);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(179, 22, 31, 0.16), transparent 65%);
}
.hero::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -140px;
}
.hero::after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(15, 138, 62, 0.16), transparent 65%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  font-size: clamp(72px, 14vw, 168px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.display__line {
  display: inline-block;
  color: var(--ink);
}
.display__line--in {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 0.32em;
  line-height: 1;
  color: var(--red);
  margin: 0.15em 0 0.1em 0.12em;
  letter-spacing: 0;
}
.tagline {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  margin: 22px 0 0;
  display: inline-block;
  padding: 8px 18px;
  background: rgba(179, 22, 31, 0.1);
  border-left: 6px solid var(--red);
  color: var(--red-deep);
}
.tagline em {
  color: var(--ink);
  font-size: 1.05em;
}

.stamp {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0 0;
  border: 3px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transform: rotate(-1deg);
  box-shadow: 6px 6px 0 var(--green);
}
.stamp__date,
.stamp__place {
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stamp__date {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.stamp__date span {
  font-family: var(--display);
  letter-spacing: 0.16em;
  font-size: 14px;
  opacity: 0.8;
}
.stamp__date strong {
  font-family: var(--display);
  font-size: 46px;
  line-height: 0.9;
  color: #fff;
}
.stamp__place strong {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.04em;
}
.stamp__place span {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero__note {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero__marks {
  position: absolute;
  right: clamp(12px, 4vw, 48px);
  top: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1;
}
.mark--bloc {
  width: clamp(84px, 11vw, 140px);
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.mark--mama {
  width: clamp(84px, 11vw, 140px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid var(--teal);
  color: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  text-align: center;
}
.mark__m {
  font-family: var(--accent);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 0.9;
  font-style: normal;
  font-weight: 500;
}
.mark__t {
  font-family: var(--display);
  font-size: clamp(9px, 1.1vw, 13px);
  letter-spacing: 0.22em;
  margin-top: 4px;
}
.mark__e {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
@media (max-width: 760px) {
  .hero__marks {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 0 24px;
  }
  .hero {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* load-in reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.reveal--1 {
  animation-delay: 0.08s;
}
.reveal--2 {
  animation-delay: 0.2s;
}
.reveal--3 {
  animation-delay: 0.32s;
}
.reveal--4 {
  animation-delay: 0.44s;
}
.reveal--5 {
  animation-delay: 0.56s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Story ---------- */
.story {
  padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 48px);
}
.story__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story__anchor {
  font-family: var(--display);
  letter-spacing: 0.14em;
  font-size: 18px;
  color: var(--green-deep);
  margin: 0 0 14px;
}
.story__anchor strong {
  color: var(--red);
  font-weight: 400;
}
.story__text {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.story__text em {
  color: var(--red);
}

/* ---------- How it works ---------- */
.how {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px) clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 36px);
}
@media (max-width: 820px) {
  .how {
    grid-template-columns: 1fr;
  }
}
.how__col {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 40px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.how__col::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
}
.how__col--families::before {
  background: var(--red);
}
.how__col--sponsors::before {
  background: var(--green);
}
.steps {
  list-style: none;
  counter-reset: s;
  padding: 0;
  margin: 0 0 22px;
}
.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 16px 56px;
}
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--kraft-deep);
}
.how__col--families .steps li::before {
  color: var(--red);
  opacity: 0.55;
}
.how__col--sponsors .steps li::before {
  color: var(--green);
  opacity: 0.6;
}
.pricebox {
  background: var(--paper);
  border: 2px dashed var(--kraft-deep);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 15.5px;
}
.pricebox p {
  margin: 6px 0;
}
.pricebox b {
  color: var(--green-deep);
}

/* ---------- Rules ---------- */
.rules {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(48px, 7vw, 90px) clamp(16px, 5vw, 48px);
}
.rules .h2 {
  color: #fff;
}
.rules .h2 em {
  color: var(--gold);
  font-size: 0.5em;
}
.rules__list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.rules__list li {
  padding: 14px 18px 14px 54px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 17px;
}
.rules__list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 12px;
  font-family: var(--display);
  font-size: 24px;
  color: var(--green);
}
.rules strong {
  color: #fff;
}

/* ---------- Forms ---------- */
.formwrap {
  padding: clamp(48px, 7vw, 90px) clamp(16px, 5vw, 48px);
}
.formwrap--family {
  background: linear-gradient(180deg, var(--paper), var(--kraft));
}
.formwrap--sponsor {
  background: linear-gradient(180deg, var(--cream), var(--paper));
  border-top: 6px solid var(--green);
}
.formhead {
  max-width: 760px;
  margin: 0 auto 28px;
}
.formhead__note {
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0;
}

.form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.fs {
  border: 0;
  padding: 0;
  margin: 0 0 26px;
}
.fs legend {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fs legend small {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
}
.field--wide {
  grid-column: 1 / -1;
}
.field > span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.field small {
  font-weight: 600;
  font-size: 13px;
}
input,
select,
textarea {
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  border: 2px solid var(--kraft-deep);
  border-radius: 10px;
  background: #fff;
  padding: 11px 13px;
  width: 100%;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 138, 62, 0.15);
}
input:user-invalid,
select:user-invalid {
  border-color: var(--red);
}
textarea {
  resize: vertical;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
  font-weight: 600;
  font-size: 15.5px;
}
.check input {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--green);
}

.choices {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.choice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 2px solid var(--kraft-deep);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.choice:has(input:checked) {
  border-color: var(--green);
  background: rgba(15, 138, 62, 0.06);
}
.choice input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--green);
}
.choice span {
  display: flex;
  flex-direction: column;
}
.choice small {
  font-size: 13.5px;
}

.yesno {
  display: flex;
  gap: 8px;
}
.yesno label {
  flex: 1;
}
.yesno input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.yesno span {
  display: block;
  text-align: center;
  padding: 11px;
  border: 2px solid var(--kraft-deep);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.yesno input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.yesno input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(15, 138, 62, 0.25);
}

.kid {
  background: #fff;
  border: 2px solid var(--kraft-deep);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  position: relative;
  animation: rise 0.35s ease;
}
.kid__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.kid__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--red);
}
.kid__remove {
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
}
.kid:only-child .kid__remove {
  display: none;
}
.gifts {
  margin-top: 14px;
}
.gifts__label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.gifts__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .gifts__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form__foot {
  text-align: center;
  padding-top: 6px;
}
.form__errors {
  text-align: left;
  background: rgba(179, 22, 31, 0.08);
  border-left: 5px solid var(--red);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 15px;
}
.form__errors ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.form__fine {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 14px 0 0;
}

.done {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border-radius: 18px;
  padding: 40px 28px;
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 600;
}
.done__big {
  font-family: var(--display);
  font-size: 56px;
  margin: 0 0 8px;
  color: var(--green-deep);
}
.done .btn {
  margin-top: 10px;
}

/* ---------- Partner + footer ---------- */
.partner {
  padding: clamp(40px, 6vw, 72px) clamp(16px, 5vw, 48px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
}
.partner__marks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.partner__marks img {
  width: 96px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: var(--shadow);
}
.partner__marks .mark--mama {
  width: 96px;
  transform: none;
}
.partner__x {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold);
}
.partner em {
  color: var(--red);
}

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 36px clamp(16px, 5vw, 48px) 28px;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto 18px;
}
.foot__brand img {
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.foot__brand strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.06em;
}
.foot__brand span {
  font-size: 14px;
  opacity: 0.8;
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto 18px;
  font-weight: 700;
  font-size: 15px;
}
.foot__links a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
}
.foot__fine {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 13.5px;
  opacity: 0.75;
  line-height: 1.6;
}
.foot__fine a {
  color: var(--cream);
}

/* ---------- Safety + polish ---------- */
body,
main {
  overflow-x: clip;
}
.stamp {
  max-width: 100%;
}
.field > span {
  justify-content: flex-end;
}
.grid .field > span {
  min-height: 2.6em;
}

/* ---------- v2: language toggle, path chooser, single-column paths ---------- */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}
.lang__btn {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 6px 12px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.lang__btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}

.choose__label {
  font-family: var(--display);
  letter-spacing: 0.14em;
  font-size: 20px;
  color: var(--ink);
  margin: 34px 0 14px;
}
.choose {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.choose .btn {
  font-size: 24px;
}

.how--single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  padding-top: clamp(40px, 6vw, 72px);
}
.readfirst {
  margin: 0 0 22px;
  padding: 12px 16px;
  background: rgba(214, 138, 28, 0.14);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
  font-size: 15.5px;
}
.switch {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
}
.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 800;
  color: var(--green-deep);
  text-decoration: underline;
  cursor: pointer;
}
.pricebox__title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0 0 6px !important;
}
.pricebox ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.pricebox li {
  margin: 4px 0;
}
.taxnote {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 12px !important;
}
.done .taxnote {
  border: 0;
  margin-top: 6px !important;
}

/* Mamahood badge is an SVG symbol now: always a true circle */
img.mark--mama {
  width: clamp(84px, 11vw, 140px);
  height: clamp(84px, 11vw, 140px);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  border: 0;
  background: none;
  display: block;
}
img.mark--static {
  width: 96px;
  height: 96px;
  transform: none;
}
.partner__marks img {
  width: 96px;
  height: 96px;
}

/* ---------- v3: real logo files ---------- */
/* Mamahood PNG is cropped to its circle; no extra ring needed */
img.mark--mama {
  background: none;
  box-shadow: 0 18px 40px -20px rgba(28, 26, 23, 0.55);
}

/* ---------- v3b: explicit circles for the square BLOC logo ---------- */
.circle,
span.mark--bloc {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.circle img,
span.mark--bloc img {
  width: 72%;
  height: 72%;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
span.mark--bloc {
  width: clamp(84px, 11vw, 140px);
  height: clamp(84px, 11vw, 140px);
  padding: 0;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.partner__marks .circle {
  width: 96px;
  height: 96px;
  box-shadow: var(--shadow);
}
.circle--foot {
  width: 72px;
  height: 72px;
}
.circle--nav {
  width: 44px;
  height: 44px;
}
.circle--nav img {
  width: 78%;
  height: 78%;
}

[hidden] {
  display: none !important;
}
.form .yesno + * ,
.form .grid + .grid {
  margin-top: 14px;
}

/* ---------- v4: giving + checkout ---------- */
.field__label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin: 4px 0 8px;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tile input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.tile span {
  display: block;
  text-align: center;
  padding: 13px 6px;
  border: 2px solid var(--kraft-deep);
  border-radius: 10px;
  background: #fff;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.tile input:checked + span {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.tile input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(179, 22, 31, 0.25);
}
.summary {
  background: var(--paper);
  border: 2px dashed var(--kraft-deep);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 8px 0 18px;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-weight: 700;
}
.summary__fee {
  margin: 6px 0;
  font-size: 14.5px;
}
.summary__total {
  border-top: 2px solid var(--kraft-deep);
  margin-top: 6px;
  padding-top: 10px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
}
.summary__total b {
  color: var(--green-deep);
}
.checkout {
  background: #fff;
  border: 2px solid var(--kraft-deep);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 18px 0;
  text-align: left;
}
.checkout__title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-align: center;
}
.checkout__title b {
  color: var(--green-deep);
}
#paypal-buttons {
  max-width: 420px;
  margin: 0 auto;
}
.zelle {
  text-align: center;
  font-size: 16.5px;
}
.zelle p {
  margin: 8px 0;
}
.zelle__to {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px;
  background: var(--paper);
  border-radius: 10px;
}
.zelle__to b {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.checkout__paid {
  text-align: center;
  font-weight: 800;
  color: var(--green-deep);
  font-size: 18px;
}

/* ---------- v5: preferred-contact + fee rows ---------- */
.field > label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pref {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
}
.pref input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}
.pref:has(input:checked) {
  color: var(--green-deep);
}
.summary__nofee {
  color: var(--green-deep);
  font-size: 14.5px;
}

.field > label.pref {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
