/* ============================================================
   Printably3D — styles (light theme)
   ============================================================ */

:root {
  --cream: #faf6ec;         /* page background */
  --cream-2: #f1ece0;       /* alt band */
  --ink: #143430;           /* dark green text */
  --ink-soft: #3c5a54;

  --teal-deep: #146b60;
  --teal: #17877b;          /* logo teal */
  --teal-bright: #23a08f;
  --sea: #35b3a0;
  --mint: #7fe0c3;          /* CTA pill */
  --mint-soft: #aef0da;
  --mint-wash: #ddf2e9;     /* palest wave */

  --card: #ffffff;
  --card-ink: #16332e;
  --shadow: 20, 52, 48;     /* rgb for shadows on light bg */

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-hand: "Shantell Sans", "Comic Sans MS", cursive;

  --radius-card: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--card-ink);
  background: var(--mint);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(var(--shadow), 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 0 rgba(var(--shadow), 0.35);
  background: var(--mint-soft);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(var(--shadow), 0.35);
}
.btn--big   { font-size: 0.95rem; padding: 0.95em 2em; }
.btn--small { font-size: 0.76rem; padding: 0.75em 1.5em; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.7rem clamp(1.2rem, 4vw, 2.6rem);
  background: color-mix(in srgb, var(--ink) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 40px; height: 40px; fill: var(--sea); }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #eafaf3;
}
.brand__name b { color: var(--mint); display: inline; }
.brand__suffix {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9cc7bd;
}

.site-nav { display: flex; gap: 1.4rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: #cfe8e0;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--mint); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2.4rem) clamp(1.2rem, 4vw, 3rem) 2.4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__waves {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.wave { position: absolute; }
.wave path, .wave use { fill: currentColor; }

/* soft mint bands cascading down the hero */
.wave--band1 { color: var(--mint-wash);  top: 0; left: 0; width: 100%; height: 60%; }
.wave--band2 { color: #c8ecdd;           top: 0; left: 0; width: 100%; height: 78%; opacity: 0.9; }
.wave--band3 { color: #a5e0cc;           top: 0; left: 0; width: 100%; height: 98%; opacity: 0.55; }

/* the sneaky giant logo wing sweeping across the hero */
.wave--wing {
  color: var(--sea);
  width: 150vw;
  height: auto;
  top: -32%;
  left: -18%;
  opacity: 0.16;
  transform: rotate(-6deg);
}

/* the logo smile floating lower-right */
.wave--smile {
  color: var(--teal);
  width: 260px;
  bottom: 3%;
  right: -50px;
  opacity: 0.14;
  transform: rotate(8deg);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 1.2rem;
  color: var(--ink);
}
.dot { color: var(--teal-bright); }

.underlined { position: relative; display: inline-block; }
.squiggle {
  position: absolute;
  left: 2%;
  bottom: -0.22em;
  width: 96%;
  height: 0.22em;
  color: var(--teal-bright);
}
.squiggle path {
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  fill: none;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hand-written scribbles + arrows */
.scribble {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}
.scribble p { margin: 0; }

.arrow { width: 64px; height: auto; flex: none; }
.arrow path {
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* arrow tip aims left, straight at the button beside it */
.scribble--cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-deep);
}
.scribble--cta .arrow { width: 58px; margin-top: -0.6rem; }

/* sticker badge */
.sticker {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.5em 1em;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--teal-deep);
  background: var(--card);
  border: 2px dashed var(--teal-bright);
  border-radius: 14px;
  rotate: -2deg;
  box-shadow: 0 4px 12px rgba(var(--shadow), 0.12);
}

/* ---------- hero video ---------- */

.hero__video {
  margin: 0;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(var(--shadow), 0.28);
  rotate: 1deg;
  transition: rotate 0.2s ease;
}
.video-frame:hover { rotate: 0deg; }
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* caption sits under the video, arrow tip pointing up at it */
.scribble--featured {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  color: var(--teal-deep);
}
.scribble--featured .arrow { width: 44px; }
.scribble--featured p { margin-top: 0.9rem; }

.hero__footnotes {
  max-width: 1080px;
  margin: 0.5rem auto 0;
  display: flex;
  justify-content: flex-end;
}
.scribble--inspo {
  color: var(--teal-deep);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 1.05rem;
}
.scribble--inspo .arrow { width: 64px; transform: translateX(-20px); }

@media (max-width: 860px) {
  .hero { padding-bottom: 3rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .wave--wing { width: 260vw; top: -12%; }
}

/* ---------- gallery ---------- */

.gallery {
  padding: clamp(1.6rem, 3.5vw, 2.8rem) clamp(1.2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.2rem);
  max-width: 1140px;
  margin: 0 auto;
}

/* tuck the gallery heading up beside the "keep scrolling" arrow on desktop */
@media (min-width: 861px) {
  .gallery { margin-top: -3.5rem; }
}

.gallery__intro {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.hand-title {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.arrow--swoop { width: 80px; color: var(--teal-bright); margin-top: 0.5rem; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
/* 8 cards, 4 across on desktop */
@media (min-width: 1020px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  color: var(--card-ink);
  border-radius: var(--radius-card);
  padding: 0.9rem 0.9rem 1.2rem;
  box-shadow: 0 8px 20px rgba(var(--shadow), 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  translate: 0 20px;
}
/* sticker-wall tilt */
.card:nth-child(2n)  { rotate: 0.6deg; }
.card:nth-child(3n)  { rotate: -0.5deg; }
.card.revealed { opacity: 1; translate: 0 0; transition: opacity .5s ease, translate .5s ease, transform .2s ease, box-shadow .2s ease; }
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(var(--shadow), 0.18);
}
.card h3 { margin: 0.85rem 0.3rem 0.25rem; font-size: 1.15rem; font-weight: 800; }
.card p  { margin: 0 0.3rem; font-size: 0.92rem; color: var(--ink-soft); }

.card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 8px);
  overflow: hidden;
}

/* placeholder image treatment */
.placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #eef4f1 0 14px, #e2ede8 14px 28px);
  color: #8aa49d;
  font-family: var(--font-hand);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- how it works ---------- */

.how { background: var(--teal); color: #eafaf3; }
.how__divider { width: 100%; height: 70px; fill: var(--teal); margin-top: -69px; position: relative; }

.how__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3.5vw, 2.6rem) clamp(1.2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.2rem);
}
.how h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0e2a26;
  margin: 0 0 1.4rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}
.step__num {
  display: block;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--mint);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
}
.step h3 { margin: 0.5rem 0 0.3rem; font-size: 1.2rem; font-weight: 800; color: #0e2a26; }
.step p  { margin: 0; opacity: 0.94; font-size: 0.95rem; }

/* ---------- materials ---------- */

.materials {
  background: var(--cream-2);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.2rem, 4vw, 3rem);
  text-align: center;
}
.materials .hand-title { margin-bottom: 1.2rem; }

.chips {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.chip {
  background: var(--card);
  border: 2px solid var(--teal-bright);
  border-radius: 999px;
  padding: 0.5em 1.2em;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
.chip:hover { transform: translateY(-3px) rotate(1deg); background: var(--mint-wash); }
.chip small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

/* ---------- quote ---------- */

.quote {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 4.5vw, 3.2rem) clamp(1.2rem, 4vw, 3rem);
}
.quote__waves { position: absolute; inset: 0; z-index: -1; }
.wave--quote {
  color: var(--mint-wash);
  width: 100%;
  height: 100%;
  inset: 0;
}

.quote__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.quote__copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.quote__copy > p { max-width: 36ch; color: var(--ink-soft); margin: 0; }

.quote__whatsapp {
  margin: 0.8rem 0 0 !important;
  font-weight: 700;
}
.quote__whatsapp a {
  color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.quote__whatsapp a:hover { color: var(--teal-bright); }

.scribble--quote {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-deep);
  margin-top: 1.6rem;
}
.arrow--right { width: 76px; }

.quote__form {
  background: var(--card);
  color: var(--card-ink);
  border: 1px solid rgba(var(--shadow), 0.08);
  border-radius: var(--radius-card);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  box-shadow: 0 14px 32px rgba(var(--shadow), 0.16);
  display: grid;
  gap: 0.9rem;
}
.quote__form label { display: grid; gap: 0.3rem; }
.quote__form label span {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quote__form input,
.quote__form textarea {
  font: inherit;
  font-family: var(--font-display);
  border: 2px solid #dbe5e1;
  border-radius: 12px;
  padding: 0.6em 0.85em;
  background: #fcfdfc;
  color: var(--card-ink);
  resize: vertical;
  transition: border-color 0.15s ease;
}
.quote__form input:focus,
.quote__form textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
}
.quote__form .btn { justify-self: start; }
.form-note { margin: 0; font-weight: 700; color: var(--teal); }

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

/* ---------- visit ---------- */

.visit {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.2rem, 4vw, 3rem) clamp(2.2rem, 5vw, 3.4rem);
}

.visit__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}

.visit__copy { align-self: center; }
.visit__copy p { margin: 0.7rem 0 0; color: var(--ink-soft); max-width: 30ch; }
.visit__copy strong { color: var(--ink); }
.visit__hint {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--teal-deep) !important;
  font-size: 0.95rem;
}

.visit__photo,
.visit__map {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 10px 24px rgba(var(--shadow), 0.14);
}
.visit__photo {
  rotate: -1deg;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visit__map   { rotate: 1deg; background: var(--mint-wash); }
.visit__map { position: relative; }
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}
.visit__maplink {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.35em 0.85em;
  background: var(--card);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--teal-deep);
  box-shadow: 0 3px 10px rgba(var(--shadow), 0.2);
}
.visit__maplink:hover { background: var(--mint-wash); }

@media (max-width: 900px) {
  .visit__inner { grid-template-columns: 1fr 1fr; }
  .visit__copy { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .visit__inner { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #eafaf3;
  text-align: center;
  padding: 1.8rem 1.2rem 1.4rem;
}
.footer__mark { width: 54px; height: 54px; fill: var(--sea); margin: 0 auto 0.6rem; }
.site-footer p { margin: 0.15rem 0; }
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  margin: 0.9rem 0;
}
.site-footer nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.85;
}
.site-footer nav a:hover { opacity: 1; color: var(--mint); }
.muted { opacity: 0.65; }
.small { font-size: 0.78rem; margin-top: 0.8rem; }
.footer__email {
  color: var(--mint);
  font-weight: 700;
  text-decoration: none;
}
.footer__email:hover { text-decoration: underline; }

/* ---------- follow band ---------- */

.follow {
  background: var(--teal);
  color: #eafaf3;
}
.follow__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.2rem) clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}
.follow .hand-title { color: #f2fcf7; }
.follow__sub {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 34ch;
}
.arrow--follow {
  width: 76px;
  color: var(--mint);
  justify-self: center;
}
.follow__links {
  display: grid;
  gap: 0.7rem;
}
.follow__btn {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8em 1.4em;
  background: var(--mint);
  color: var(--card-ink);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.follow__btn:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.22);
  background: var(--mint-soft);
}
.follow__btn strong {
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.follow__btn span {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 860px) {
  .follow__inner { grid-template-columns: 1fr; }
  .arrow--follow { justify-self: start; rotate: 35deg; margin: -0.4rem 0 -0.6rem 2rem; }
}

/* ---------- lightbox ---------- */

.card { cursor: pointer; }
.card:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
}

.lightbox {
  border: none;
  padding: 0;
  border-radius: var(--radius-card);
  background: var(--card);
  color: var(--card-ink);
  max-width: min(640px, 92vw);
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.lightbox::backdrop {
  background: rgba(14, 38, 34, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox[open] { animation: lightbox-in 0.22s ease; }
@keyframes lightbox-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.lightbox__img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  background: #edf3f0;
  display: block;
}

.lightbox__body { padding: 1.1rem 1.4rem 1.4rem; }
.lightbox__title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.lightbox__story {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lightbox__story a {
  color: var(--teal);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.lightbox__story a:hover { color: var(--teal-bright); }

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--card-ink);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}
.lightbox__close:hover {
  background: var(--mint);
  transform: rotate(90deg);
}

/* ---------- keyring promo popout ---------- */

@font-face {
  font-family: 'LicensePlate';
  src: url('../assets/license-plate.ttf') format('truetype');
  font-display: swap;
}

.kr-promo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(250px, 80vw);
  background: var(--card);
  border: 2px dashed var(--teal-bright);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 12px 30px rgba(var(--shadow), 0.25);
  rotate: -2deg;
  transition: rotate 0.15s ease, box-shadow 0.15s ease;
  animation: kr-promo-in 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.kr-promo:hover {
  rotate: 0deg;
  box-shadow: 0 16px 36px rgba(var(--shadow), 0.3);
}
@keyframes kr-promo-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.kr-promo__link {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.kr-promo__plate {
  width: 130px;
  margin: 0 0 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(var(--shadow), 0.2));
}
.kr-promo__text {
  display: block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--teal-deep);
}
.kr-promo__text small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.kr-promo__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(var(--shadow), 0.3);
  transition: transform 0.12s ease, background 0.12s ease;
}
.kr-promo__close:hover {
  background: var(--teal-deep);
  transform: scale(1.12);
}

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lightbox[open] { animation: none; }
  .kr-promo { animation: none; }
  .card { opacity: 1; translate: 0 0; }
  * { transition-duration: 0.01ms !important; }
}
