/* ============================================================
   Realworldstudios — echte Fotografie, garantiert ohne KI
   Sunny, joyful, hand-drawn. Paper, marigold, terracotta.
   ============================================================ */

:root {
  --paper:      #fdf8ee;   /* warm cream paper */
  --paper-deep: #f7efdd;
  --ink:        #2c2218;   /* warm espresso, never pure black */
  --ink-soft:   #4c3f31;
  --muted:      #8a7a66;

  --sun:        #ffc94b;   /* sunshine */
  --marigold:   #f5a623;
  --terra:      #e2552c;   /* terracotta — energy accent */
  --leaf:       #5b8c5a;
  --sky:        #8ec4dd;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --hand:    "Shantell Sans", "Comic Sans MS", cursive;
  --body:    "Figtree", "Avenir Next", "Segoe UI", sans-serif;

  --shell-max: 1280px;
  --shell-pad: clamp(20px, 5vw, 64px);

  --t-fast: 180ms ease;
  --t-mid:  340ms cubic-bezier(.22,.68,.32,1.02);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ol, ul { list-style: none; }

::selection { background: var(--sun); color: var(--ink); }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-left: var(--shell-pad);
  padding-right: var(--shell-pad);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--shell-pad);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--ink); }

.wordmark {
  font-family: var(--display);
  font-weight: 650;
  font-size: 21px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.wordmark .wm-real { font-style: italic; }
.wordmark .wm-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--terra);
  align-self: center;
  margin: 0 3px;
}

.primary-nav { display: flex; gap: 2px; font-size: 15px; }
.primary-nav a {
  position: relative;
  opacity: 0.65;
  padding: 5px 12px;
  border-radius: 999px;
  transition: opacity var(--t-fast), background var(--t-mid);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a.nav-active {
  opacity: 1;
  background: var(--sun);
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--paper);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.lang-toggle:hover { transform: rotate(-2deg); box-shadow: 3px 3px 0 var(--ink); }
.lang-opt { opacity: 0.35; transition: opacity var(--t-fast); }
.lang-opt.is-active { opacity: 1; color: var(--terra); }
.lang-sep { opacity: 0.35; }

/* buttons */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.cta-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 13px 26px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--marigold);
}
.cta-primary:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--marigold); }
.cta-ghost {
  border: 2px solid var(--ink);
  padding: 13px 26px;
  background: transparent;
}
.cta-ghost:hover { background: var(--sun); transform: rotate(-1.2deg); }
.cta-small { padding: 8px 18px; font-size: 14.5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--shell-pad) 60px;
  max-width: var(--shell-max);
  margin: 0 auto;
}

.hero-sun {
  position: absolute;
  top: clamp(90px, 12vh, 150px);
  right: clamp(4px, 7vw, 120px);
  width: clamp(120px, 16vw, 210px);
  color: var(--marigold);
  animation: sunFloat 7s ease-in-out infinite;
}
@keyframes sunFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(6deg); }
}

.hero-kicker {
  font-family: var(--hand);
  font-size: clamp(17px, 2vw, 22px);
  color: var(--terra);
  transform: rotate(-1.6deg);
  display: inline-block;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 470;
  font-size: clamp(44px, 8.2vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 11em;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
}
.hero-title .squiggle-word { position: relative; white-space: nowrap; }
.hero-title .squiggle-word svg {
  position: absolute;
  left: -2%;
  bottom: -0.18em;
  width: 104%;
  height: 0.34em;
  color: var(--marigold);
  overflow: visible;
}

.hero-lede {
  margin-top: 30px;
  max-width: 33em;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
}

.hero-cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* rotating guarantee stamp */
.stamp {
  position: absolute;
  bottom: clamp(24px, 7vh, 70px);
  right: clamp(16px, 6vw, 90px);
  width: clamp(110px, 13vw, 170px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  z-index: 5;
}
.stamp svg.stamp-ring { position: absolute; inset: 0; animation: spin 24s linear infinite; }
.stamp svg.stamp-ring text {
  font-family: var(--body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--ink);
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp-core {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  border: 2.5px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 17px);
  text-align: center;
  line-height: 1.15;
  transform: rotate(-8deg);
  box-shadow: 3px 3px 0 rgba(44, 34, 24, 0.18);
}

/* hero photo strip — slight mess of tilted prints */
.hero-strip {
  margin-top: clamp(40px, 7vh, 80px);
  display: flex;
  gap: clamp(10px, 2vw, 26px);
  align-items: flex-end;
}
.hero-strip .print { flex: 1; }
.hero-strip .print-img { aspect-ratio: 3 / 4; }
.hero-strip .print-img img { width: 100%; height: 100%; }

/* ============================================================
   PRINTS (polaroid-ish frames, reused everywhere)
   ============================================================ */
.print {
  background: #fff;
  padding: 10px 10px 14px;
  border: 1.5px solid rgba(44, 34, 24, 0.16);
  box-shadow: 0 10px 24px -12px rgba(44, 34, 24, 0.35);
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.print:hover {
  transform: rotate(0deg) scale(1.025);
  box-shadow: 0 18px 38px -14px rgba(44, 34, 24, 0.4);
  z-index: 3;
}
.print img { width: 100%; height: 100%; object-fit: cover; }
.print .print-img { overflow: hidden; }
.print figcaption {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--muted);
  padding-top: 9px;
  text-align: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--sun);
  padding: 13px 0;
  transform: rotate(-0.6deg) scale(1.01);
}
.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  white-space: nowrap;
}
.marquee-track .m-star { font-style: normal; color: var(--terra); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(80px, 12vh, 150px) 0; }

.eyebrow {
  font-family: var(--hand);
  font-size: 19px;
  color: var(--terra);
  display: inline-block;
  transform: rotate(-1.4deg);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-weight: 520;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 16em;
}
.section-title em { font-style: italic; color: var(--terra); }

/* hand-drawn underline / circle accents */
.u-squiggle { position: relative; white-space: nowrap; }
.u-squiggle svg {
  position: absolute;
  left: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.3em;
  color: var(--marigold);
  overflow: visible;
}
.u-circle { position: relative; white-space: nowrap; }
.u-circle svg {
  position: absolute;
  inset: -0.32em -0.45em;
  width: calc(100% + 0.9em);
  height: calc(100% + 0.64em);
  color: var(--terra);
  overflow: visible;
}

/* draw-on-scroll for doodle strokes */
.doodle-path {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 1.1s cubic-bezier(.45,.05,.35,1) 0.15s;
}
.in-view .doodle-path { stroke-dashoffset: 0; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,.32,1.02);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   MANIFEST (Haltung)
   ============================================================ */
.manifest { background: var(--paper); }
.manifest-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-top: 50px;
}
.manifest-copy p + p { margin-top: 1.2em; }
.manifest-copy .big {
  font-family: var(--display);
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.35;
  font-weight: 480;
}
.manifest-copy .hand-note {
  font-family: var(--hand);
  color: var(--leaf);
  font-size: 19px;
  transform: rotate(-1deg);
  display: inline-block;
  margin-top: 1.4em;
}

.manifest-photo { position: relative; }
.manifest-photo .print { --tilt: 2.2deg; }
.manifest-photo .doodle-arrow {
  position: absolute;
  left: -68px;
  bottom: 34px;
  width: 80px;
  color: var(--terra);
  transform: rotate(10deg);
}
.manifest-photo .doodle-note {
  position: absolute;
  left: -120px;
  bottom: 110px;
  font-family: var(--hand);
  font-size: 17px;
  color: var(--terra);
  transform: rotate(-4deg);
  width: 110px;
  line-height: 1.3;
  text-align: center;
}

/* three values */
.values {
  margin-top: clamp(60px, 9vh, 110px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}
.value-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 30px 26px 34px;
  box-shadow: 5px 5px 0 var(--paper-deep);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.value-card:hover { transform: translateY(-5px) rotate(-0.6deg); box-shadow: 8px 9px 0 var(--sun); }
.value-card .v-doodle { width: 54px; height: 54px; margin-bottom: 18px; color: var(--terra); }
.value-card:nth-child(2) .v-doodle { color: var(--marigold); }
.value-card:nth-child(3) .v-doodle { color: var(--leaf); }
.value-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}
.value-card p { font-size: 15.5px; color: var(--ink-soft); }

/* ============================================================
   GALLERY — messy desk of prints
   ============================================================ */
.gallery { background: var(--paper-deep); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.gallery-note { font-family: var(--hand); font-size: 18px; color: var(--muted); transform: rotate(-1.2deg); max-width: 21em; }

.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.4vw, 30px);
  align-items: start;
}
.gallery-grid .print { cursor: zoom-in; }
.g-a { grid-column: span 5; }
.g-b { grid-column: span 4; margin-top: 50px; }
.g-c { grid-column: span 3; margin-top: 16px; }
.g-d { grid-column: span 3; margin-top: -30px; }
.g-e { grid-column: span 5; margin-top: 24px; }
.g-f { grid-column: span 4; margin-top: -16px; }
.g-g { grid-column: span 4; }
.g-h { grid-column: span 4; margin-top: 36px; }
.g-i { grid-column: span 4; margin-top: -22px; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  background: rgba(44, 34, 24, 0.82);
  padding: 5vmin;
  cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto; height: auto;
  background: #fff;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { overflow: clip; }
.guarantee-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.guarantee-stamp-col { display: grid; place-items: center; position: relative; }
.guarantee .stamp { position: relative; inset: auto; width: clamp(220px, 24vw, 300px); }
.guarantee .stamp-core { font-size: clamp(19px, 2vw, 25px); background: var(--paper); }
.guarantee .stamp svg.stamp-ring text { font-size: 10.5px; }

.guarantee-points { margin-top: 34px; display: grid; gap: 18px; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-point .tick {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  color: var(--leaf);
  margin-top: 2px;
}
.g-point h4 { font-family: var(--display); font-size: 19px; font-weight: 600; }
.g-point p { font-size: 15.5px; color: var(--ink-soft); margin-top: 3px; }

/* ============================================================
   WORKFLOW — the human way
   ============================================================ */
.workflow { background: var(--ink); color: var(--paper); }
.workflow .eyebrow { color: var(--sun); }
.workflow .section-title em { color: var(--sun); }
.workflow-intro { max-width: 36em; margin-top: 22px; color: #cfc4b4; font-size: 18px; }

.steps {
  margin-top: clamp(50px, 8vh, 90px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
  counter-reset: step;
}
.step {
  position: relative;
  border: 2px solid rgba(253, 248, 238, 0.28);
  border-radius: 18px;
  padding: 70px 24px 30px;
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.step:hover { border-color: var(--sun); transform: translateY(-5px); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px; left: 22px;
  font-family: var(--hand);
  font-size: 27px;
  color: var(--sun);
  transform: rotate(-6deg);
}
.step:nth-child(even) { margin-top: 34px; }
.step h3 { font-family: var(--display); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 15px; color: #cfc4b4; }
.step .step-hand {
  display: block;
  margin-top: 16px;
  font-family: var(--hand);
  font-size: 15.5px;
  color: var(--sun);
  transform: rotate(-1.4deg);
}

/* ============================================================
   FOR WHOM / REFERENZ
   ============================================================ */
.forwhom-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  margin-top: 50px;
}
.forwhom-list { display: grid; gap: 14px; margin-top: 8px; }
.fw-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 16px;
  width: fit-content;
  transition: transform var(--t-mid), background var(--t-mid);
}
.fw-item:nth-child(even) { margin-left: 26px; }
.fw-item:hover { background: var(--sun); transform: rotate(-1deg); }
.fw-item .fw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terra); flex: 0 0 10px; }
.fw-item:nth-child(2) .fw-dot { background: var(--marigold); }
.fw-item:nth-child(3) .fw-dot { background: var(--leaf); }
.fw-item:nth-child(4) .fw-dot { background: var(--sky); }
.fw-item:nth-child(5) .fw-dot { background: var(--terra); }

.testimonial {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 38px 36px 32px;
  box-shadow: 7px 7px 0 var(--sun);
  transform: rotate(0.8deg);
}
.testimonial .t-quotemark {
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.6;
  color: var(--terra);
  display: block;
  margin-bottom: 18px;
}
.testimonial blockquote {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  font-weight: 480;
}
.testimonial figcaption { margin-top: 22px; font-size: 15px; color: var(--muted); }
.testimonial figcaption strong { color: var(--ink); font-weight: 700; }
.testimonial .t-hand {
  position: absolute;
  top: -34px; right: 26px;
  font-family: var(--hand);
  color: var(--terra);
  font-size: 17px;
  transform: rotate(3deg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--sun);
  border-top: 2px solid var(--ink);
  text-align: center;
  overflow: clip;
}
.contact .eyebrow { color: var(--ink); }
.contact-title {
  font-family: var(--display);
  font-weight: 520;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.contact-title em { font-style: italic; }
.contact-lede { max-width: 30em; margin: 26px auto 0; font-size: 18px; color: var(--ink-soft); }
.contact .cta-primary { box-shadow: 4px 4px 0 var(--terra); margin-top: 40px; font-size: 19px; padding: 17px 36px; }
.contact .cta-primary:hover { box-shadow: 7px 7px 0 var(--terra); }
.contact-alt { margin-top: 18px; font-size: 15.5px; }
.contact-alt a { font-weight: 700; border-bottom: 2px solid var(--ink); }
.contact .doodle-smile { width: 64px; margin: 0 auto 26px; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #cfc4b4; padding: 60px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .wordmark { color: var(--paper); font-size: 19px; }
.footer-brand p { margin-top: 14px; font-size: 14.5px; max-width: 24em; }
.footer-block h4 {
  font-family: var(--hand);
  color: var(--sun);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  transform: rotate(-1.2deg);
  display: inline-block;
}
.footer-block p { font-size: 14.5px; line-height: 1.8; }
.footer-block a:hover { color: var(--paper); text-decoration: underline; }
.footer-base {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 248, 238, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--paper); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .primary-nav { display: none; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(even) { margin-top: 0; }
  .manifest-grid, .guarantee-inner, .forwhom-grid { grid-template-columns: 1fr; }
  .manifest-photo { max-width: 440px; }
  .manifest-photo .doodle-arrow, .manifest-photo .doodle-note { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h, .g-i { grid-column: span 6; margin-top: 0; }
}

@media (max-width: 640px) {
  .hero { padding-top: 120px; }
  .hero-strip .print:nth-child(n+3) { display: none; }
  .stamp { display: none; }
  .guarantee .stamp { display: grid; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h, .g-i { grid-column: span 2; }
  .gallery-grid .print:nth-child(even) { --tilt: 1.4deg; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-sun { width: 90px; opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sun, .stamp svg.stamp-ring, .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .doodle-path { stroke-dashoffset: 0; transition: none; }
}
