/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --cream:         #F9F5EE;
  --cream-dark:    #F0EBE0;
  --cream-deeper:  #E8E0D2;
  --primary:       #C78D75;
  --primary-dark:  #a66d56;
  --primary-light: #DCCBC4;
  --text-dark:     #3E3632;
  --text-mid:      #5C4F47;
  --text-light:    #7a6b62;
  --sage:          #A8C6A3;
  --sage-dark:     #7aab73;
  --teal:          #6B9E9B;
  --yellow:        #F4D35E;
  --yellow-dark:   #d4b03e;
  --sky:           #87CEEB;
  --rust:          #C47352;
  --navy:          #2B3A52;
  --soft-brown:    #E5D9D3;
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'Nunito Sans', system-ui, sans-serif;
  --font-hand:     'Caveat', cursive;
  --shadow-card:   0 3px 16px rgba(62,54,50,0.10);
  --shadow-lift:   0 8px 32px rgba(62,54,50,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── PAPER TEXTURE OVERLAY ───────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.handwriting { font-family: var(--font-hand); }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,245,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--soft-brown);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-dark); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-img {
  width: 34px; height: 34px;
  border-radius: 8px;
  object-fit: cover;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(62,54,50,0.12);
}
.nav-cta {
  padding: 9px 22px; border-radius: 9999px;
  background: var(--primary); color: white;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.15s;
  box-shadow: 0 3px 10px rgba(199,141,117,0.35);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding: 72px 40px 56px;
  overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}

.hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  align-items: center; gap: 48px;
  position: relative; z-index: 2;
}

.hero-label {
  font-family: var(--font-hand); font-size: 18px; color: var(--primary);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.hero-label svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-h1 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.08; color: var(--text-dark);
  letter-spacing: -0.02em; margin-bottom: 22px;
  text-wrap: pretty; max-width: 600px;
}
.hero-h1 em { font-style: italic; color: var(--primary); }
.hero-h1 .underline-accent {
  position: relative; display: inline-block;
}
.hero-h1 .underline-accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 3px;
  background: var(--yellow); border-radius: 2px;
  transform-origin: left;
  animation: underline-grow 0.8s 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--text-mid);
  max-width: 480px; margin-bottom: 20px;
}
.hero-founding-line {
  font-family: var(--font-hand); font-size: 19px; color: var(--teal);
  margin-bottom: 28px;
}

/* ─── WAITLIST FORM ───────────────────────────────────────── */
.waitlist-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.waitlist-input-row { display: flex; gap: 0; }
.waitlist-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--soft-brown);
  border-right: none;
  border-radius: 9999px 0 0 9999px;
  font-family: var(--font-body); font-size: 16px;
  background: white; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--primary); }
.waitlist-input::placeholder { color: #b8a89e; }
.waitlist-btn {
  padding: 14px 24px;
  border-radius: 0 9999px 9999px 0;
  background: var(--primary); color: white;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.15s; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(199,141,117,0.4);
}
.waitlist-btn:hover { background: var(--primary-dark); }
.waitlist-btn:active { transform: scale(0.98); }
.waitlist-confirm {
  display: none; font-family: var(--font-hand); font-size: 20px;
  color: var(--sage-dark); padding: 12px 0;
}
.waitlist-confirm.show { display: block; animation: koru-fade-in 0.4s ease-out; }
@keyframes koru-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HERO CHARACTER SIDE ──────────────────────────────────── */
.hero-character-area {
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-end;
  min-height: 500px;
  padding-right: 12px;
}
.hero-notebook-cover {
  position: absolute; inset: 0;
  background: var(--cream-dark);
  border-radius: 4px 24px 24px 4px;
  border: 2px solid var(--cream-deeper);
  box-shadow: inset 0 0 40px rgba(62,54,50,0.04), 4px 8px 32px rgba(62,54,50,0.12);
  overflow: hidden;
}
.hero-notebook-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 18px;
  background: var(--primary-light);
  border-right: 1px solid rgba(62,54,50,0.08);
}
.hero-notebook-lines {
  position: absolute; left: 32px; right: 16px; top: 30px; bottom: 20px;
  display: flex; flex-direction: column; gap: 0;
}
.notebook-line {
  flex: 1; border-bottom: 1px solid rgba(107,158,155,0.18);
}
.hero-koru-img {
  position: relative; z-index: 3;
  width: 300px; max-width: 60%;
  filter: drop-shadow(0 12px 24px rgba(62,54,50,0.18));
  animation: float-gentle 5s ease-in-out infinite;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ─── DOODLE OBJECTS ──────────────────────────────────────── */
.doodle {
  position: absolute; pointer-events: none;
  opacity: 0.72;
}
.tape {
  position: absolute; pointer-events: none;
  background: rgba(244,211,94,0.45);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(62,54,50,0.10);
}

/* ─── TORN PAPER DIVIDER ───────────────────────────────────── */
.torn-divider {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  margin-bottom: -2px;
}
.torn-top, .torn-bottom {
  display: block;
  width: 100%;
  height: 48px;
}
.torn-top { margin-bottom: -1px; }
.torn-bottom { margin-top: -1px; }
.torn-strip {
  background: var(--cream-dark);
  min-height: 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--cream-deeper);
  border-bottom: 1px solid var(--cream-deeper);
}

/* ─── PEEKING KORU ──────────────────────────────────────────── */
.report-card-outer {
  max-width: 900px; margin: 0 auto 64px;
  position: relative;
}
.peeking-koru {
  position: absolute;
  right: -90px;
  bottom: -20px;
  width: 140px;
  z-index: 4;
  filter: drop-shadow(0 6px 18px rgba(62,54,50,0.15));
  transform: rotate(4deg);
  pointer-events: none;
}
@media (max-width: 1100px) {
  .peeking-koru { right: -20px; width: 100px; }
}
@media (max-width: 820px) {
  .peeking-koru { display: none; }
  .torn-strip { min-height: 64px; }
}
.section-field-notes {
  position: relative;
  background: var(--cream);
  padding: 80px 40px 60px;
  overflow: hidden;
}

/* ─── ZORBPLOPP REPORT CARD ───────────────────────────────── */
.report-card {
  background: white;
  border: 1.5px solid var(--cream-deeper);
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
  padding: 36px 40px 40px;
  transform: rotate(-0.8deg);
  position: relative;
  overflow: visible;
}
.report-card::before {
  content: '';
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 14px;
  background: rgba(244,211,94,0.55);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(62,54,50,0.10);
}
.report-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  border-bottom: 2px dashed var(--cream-deeper); padding-bottom: 14px; margin-bottom: 22px;
  flex-wrap: wrap; gap: 8px;
}
.report-card-title-group { }
.report-card-stamp {
  font-family: var(--font-hand); font-size: 15px; color: var(--text-light);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px;
}
.report-card-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.report-card-subtitle {
  font-family: var(--font-hand); font-size: 18px; color: var(--text-mid);
}
.report-card-badge {
  border: 2px solid var(--primary); border-radius: 8px;
  padding: 8px 16px; text-align: center;
  transform: rotate(2deg);
}
.report-card-badge-label { font-family: var(--font-hand); font-size: 13px; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; }
.report-card-badge-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary); }

.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.report-item { }
.report-item-label {
  font-family: var(--font-hand); font-size: 15px; color: var(--text-light);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
}
.report-item-value {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.report-item-note {
  font-size: 16px; line-height: 1.6; color: var(--text-mid);
}
.report-bar {
  height: 7px; border-radius: 3px; margin: 10px 0 6px;
  position: relative; background: var(--cream-deeper); overflow: hidden;
}
.report-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 3px;
  animation: bar-fill 1.2s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes bar-fill { from { width: 0 !important; } }
.report-footer {
  margin-top: 24px; padding-top: 16px;
  border-top: 1.5px dashed var(--cream-deeper);
  display: flex; align-items: center; gap: 14px;
}
.report-footer-note {
  font-family: var(--font-hand); font-size: 19px; color: var(--text-mid); flex: 1; line-height: 1.5;
}
.report-footer-seal {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transform: rotate(-5deg); flex-shrink: 0;
}
.report-footer-seal-text {
  font-family: var(--font-hand); font-size: 9px; color: var(--teal);
  text-align: center; line-height: 1.3; letter-spacing: 0.04em;
}

/* ─── STICKY NOTES ROW ─────────────────────────────────────── */
.sticky-notes-row {
  max-width: 900px; margin: 0 auto 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.sticky-note {
  background: white;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 22px 22px 28px;
  position: relative;
  border-top: 4px solid var(--yellow);
}
.sticky-note:nth-child(2) { transform: rotate(1.2deg); border-top-color: var(--sage); }
.sticky-note:nth-child(3) { transform: rotate(-0.7deg); border-top-color: var(--sky); }
.sticky-note::before {
  content: '';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 12px;
  background: rgba(244,211,94,0.5);
  border-radius: 2px;
}
.sticky-note:nth-child(2)::before { background: rgba(168,198,163,0.5); }
.sticky-note:nth-child(3)::before { background: rgba(135,206,235,0.5); }
.sticky-note-number {
  font-family: var(--font-hand); font-size: 14px; color: var(--text-light);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.sticky-note-text {
  font-family: var(--font-hand); font-size: 22px; line-height: 1.45;
  color: var(--text-dark); margin-bottom: 14px;
}
.sticky-note-sub {
  font-size: 15px; line-height: 1.6; color: var(--text-mid);
}

/* ─── FIELD NOTES CARDS ────────────────────────────────────── */
.field-notes-header {
  text-align: center; margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.field-notes-label {
  font-family: var(--font-hand); font-size: 17px; color: var(--primary);
  margin-bottom: 10px; display: block;
}
.field-notes-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.1; color: var(--text-dark);
  margin-bottom: 14px;
}
.field-notes-sub { font-size: 17px; color: var(--text-mid); line-height: 1.65; }

.field-cards-row {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

.field-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-deeper);
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.field-card:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: var(--shadow-lift); }
.field-card:nth-child(1) { transform: rotate(-1.2deg); }
.field-card:nth-child(2) { transform: rotate(0.8deg); margin-top: 24px; }
.field-card:nth-child(3) { transform: rotate(-0.5deg); }

.field-card-tape {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 16px;
  background: rgba(244,211,94,0.52);
  border-radius: 2px; z-index: 3;
  box-shadow: 0 2px 5px rgba(62,54,50,0.10);
}
.field-card:nth-child(2) .field-card-tape { background: rgba(168,198,163,0.55); }
.field-card:nth-child(3) .field-card-tape { background: rgba(135,206,235,0.55); }

.field-card-doodle-area {
  height: 110px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  border-bottom: 1px solid var(--cream-deeper);
}

.field-card-body {
  padding: 18px 20px 22px;
}
.field-card-label {
  font-family: var(--font-hand); font-size: 13px; color: var(--text-light);
  letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.field-card-label::before {
  content: ''; width: 18px; height: 1.5px; background: var(--primary-light);
}
.field-card-note {
  font-family: var(--font-hand); font-size: 20px; line-height: 1.55;
  color: var(--text-dark); margin-bottom: 16px;
}
.field-card-note em { color: var(--primary); font-style: normal; }
.field-card-sub {
  font-size: 14px; color: var(--text-mid); line-height: 1.55;
  padding-top: 12px; border-top: 1px dashed var(--cream-deeper);
  font-weight: 600;
}

/* ─── SECTION MISSION DISPATCHES ──────────────────────────── */
.section-dispatches {
  position: relative;
  background: var(--navy);
  padding: 80px 40px 72px;
  overflow: hidden;
}
.section-dispatches::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 40px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 60% 100%, 40% 60%, 20% 100%, 0 30%);
}

.dispatches-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.dispatches-label {
  font-family: var(--font-hand); font-size: 18px; color: rgba(168,198,163,0.9);
  margin-bottom: 12px; display: block;
}
.dispatches-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.1; color: white; margin-bottom: 40px;
}

.dispatch-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.dispatch-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px; padding: 24px 28px;
  position: relative;
  transition: transform 0.2s ease;
}
.dispatch-card:hover { transform: translateX(4px); }
.dispatch-card-num {
  font-family: var(--font-hand); font-size: 13px; letter-spacing: 0.10em;
  color: rgba(168,198,163,0.7); text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.dispatch-card-num::before {
  content: ''; display: inline-block; width: 20px; height: 1px;
  background: rgba(168,198,163,0.5);
}
.dispatch-text {
  font-size: 19px; line-height: 1.7;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}
.dispatch-kicker {
  margin-top: 12px;
  font-family: var(--font-hand); font-size: 17px;
  color: var(--sage);
}

.dispatch-koru {
  display: flex; align-items: center; gap: 20px;
  background: rgba(168,198,163,0.12);
  border: 1px solid rgba(168,198,163,0.25);
  border-radius: 16px; padding: 18px 24px;
  margin-bottom: 48px;
}
.dispatch-koru-text {
  font-family: var(--font-hand); font-size: 20px;
  color: rgba(255,255,255,0.92); line-height: 1.4;
}
.dispatch-koru-text strong { color: var(--sage); }

/* ─── REPEAT CTA ───────────────────────────────────────────── */
.cta-area {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.cta-area .dispatches-title { margin-bottom: 12px; }
.cta-founding-line {
  font-family: var(--font-hand); font-size: 18px;
  color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.5;
}
.waitlist-form-dark { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
.waitlist-form-dark .waitlist-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2); color: white;
}
.waitlist-form-dark .waitlist-input::placeholder { color: rgba(255,255,255,0.4); }
.waitlist-form-dark .waitlist-input:focus { border-color: var(--sage); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #1e2a3a;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.footer-tagline {
  font-family: var(--font-hand); font-size: 15px;
  color: rgba(255,255,255,0.35);
}
.footer-contact {
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact a:hover { color: rgba(255,255,255,0.75); }

/* ─── SUCCESS MODAL ─────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(30, 23, 21, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.open { opacity: 1; }

.modal-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 32px 28px;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  text-align: center;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.modal-backdrop.open .modal-card { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 10px; right: 12px;
  background: transparent; border: none; cursor: pointer;
  font-size: 26px; line-height: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--cream-deeper); color: var(--text-dark); }

.modal-koru {
  width: 96px; margin: 0 auto 14px; display: block;
  filter: drop-shadow(0 6px 16px rgba(62,54,50,0.18));
}
.modal-stamp {
  font-family: var(--font-hand); font-size: 16px; color: var(--primary);
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.modal-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.2;
}
.modal-body {
  font-size: 16px; line-height: 1.6; color: var(--text-mid); margin-bottom: 22px;
}
.modal-cta {
  background: var(--primary); color: white;
  border: none; cursor: pointer;
  padding: 12px 28px;
  border-radius: 9999px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 14px rgba(199,141,117,0.4);
  transition: background 0.15s, transform 0.1s;
}
.modal-cta:hover { background: var(--primary-dark); }
.modal-cta:active { transform: scale(0.97); }

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (min-width: 1400px) {
  .container { max-width: 1200px; }
  .hero { padding: 88px 56px 72px; }
  .hero-inner { max-width: 1200px; gap: 64px; grid-template-columns: 1fr 500px; }
  .hero-h1 { font-size: clamp(50px, 4.2vw, 76px); max-width: 740px; margin-bottom: 26px; }
  .hero-sub { font-size: clamp(18px, 1.4vw, 22px); max-width: 580px; }
  .hero-founding-line { font-size: clamp(20px, 1.5vw, 24px); }
  .hero-label { font-size: clamp(26px, 1.9vw, 30px) !important; }
  .hero-character-area { min-height: 600px; padding-right: 18px; }
  .hero-koru-img { width: clamp(260px, 60%, 360px); }
  .waitlist-input { padding: 15px 22px; font-size: clamp(16px, 1.15vw, 17px); }
  .waitlist-btn { padding: 15px 26px; font-size: clamp(15px, 1.1vw, 16px); }
  .field-notes-title { font-size: clamp(34px, 3.4vw, 50px); }
  .field-notes-sub { font-size: clamp(17px, 1.3vw, 21px); }
  .field-notes-label { font-size: clamp(17px, 1.3vw, 20px); }
  .field-card-note { font-size: clamp(20px, 1.5vw, 24px); }
  .field-card-sub { font-size: clamp(14px, 1.05vw, 17px); }
  .field-card-label { font-size: clamp(13px, 1.0vw, 15px); }
  .sticky-note-text { font-size: clamp(22px, 1.7vw, 28px); }
  .sticky-note-sub { font-size: clamp(15px, 1.15vw, 18px); }
  .sticky-note-number { font-size: clamp(14px, 1.05vw, 16px); }
  .report-card-stamp { font-size: clamp(15px, 1.15vw, 18px); }
  .report-card-title { font-size: clamp(26px, 2vw, 32px); }
  .report-card-subtitle { font-size: clamp(18px, 1.4vw, 22px); }
  .report-item-label { font-size: clamp(15px, 1.15vw, 18px); }
  .report-item-value { font-size: clamp(22px, 1.7vw, 28px); }
  .report-item-note { font-size: clamp(16px, 1.2vw, 19px); }
  .report-footer-note { font-size: clamp(19px, 1.45vw, 23px); }
  .dispatches-title { font-size: clamp(34px, 3.4vw, 52px); }
  .dispatches-label { font-size: clamp(18px, 1.4vw, 22px); }
  .dispatch-text { font-size: clamp(19px, 1.45vw, 23px); }
  .dispatch-card-num { font-size: clamp(13px, 1.0vw, 15px); }
  .dispatch-kicker { font-size: clamp(17px, 1.3vw, 20px); }
  .dispatch-koru-text { font-size: clamp(20px, 1.5vw, 24px); }
  .cta-founding-line { font-size: clamp(18px, 1.4vw, 21px); }
  .footer-logo { font-size: clamp(18px, 1.4vw, 21px); }
  .footer-tagline { font-size: clamp(15px, 1.15vw, 17px); }
  .report-card-outer { max-width: 1000px; }
  .sticky-notes-row { max-width: 1000px; }
  .field-cards-row { max-width: 1080px; }
  .dispatches-inner { max-width: 940px; }
  .section-field-notes { padding: 100px 56px 80px; }
  .section-dispatches { padding: 100px 56px 88px; }
}

@media (min-width: 1900px) {
  .nav { padding: 0 72px; height: 76px; }
  .nav-logo { font-size: 26px; }
  .nav-logo-img { width: 40px; height: 40px; border-radius: 10px; }
  .nav-cta { padding: 11px 28px; font-size: 16px; }
  .container { max-width: 1400px; }
  .hero { padding: 120px 80px 100px; min-height: 88vh; }
  .hero-inner { max-width: 1400px; gap: 96px; grid-template-columns: 1fr 580px; }
  .hero-h1 { font-size: clamp(64px, 4vw, 96px); max-width: 920px; margin-bottom: 32px; }
  .hero-sub { font-size: clamp(20px, 1.35vw, 26px); max-width: 660px; }
  .hero-founding-line { font-size: clamp(22px, 1.45vw, 28px); }
  .hero-label { font-size: clamp(28px, 1.85vw, 36px) !important; }
  .hero-character-area { min-height: 700px; padding-right: 24px; }
  .hero-koru-img { width: clamp(300px, 60%, 420px); }
  .waitlist-form { max-width: 560px; }
  .waitlist-input { padding: 18px 26px; font-size: clamp(17px, 1.1vw, 19px); }
  .waitlist-btn { padding: 18px 30px; font-size: clamp(16px, 1.05vw, 18px); }
  .field-notes-title { font-size: clamp(44px, 3.2vw, 64px); }
  .dispatches-title { font-size: clamp(44px, 3.2vw, 64px); }
  .report-card-outer { max-width: 1140px; }
  .sticky-notes-row { max-width: 1140px; }
  .field-cards-row { max-width: 1220px; }
  .dispatches-inner { max-width: 1080px; }
  .section-field-notes { padding: 120px 80px 96px; }
  .section-dispatches { padding: 120px 80px 100px; }
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-label { justify-content: center; }
  .hero-h1 { margin: 0 auto 22px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-founding-line { text-align: center; }
  .waitlist-form { max-width: 100%; }
  .hero-character-area { min-height: 300px; order: -1; }
  .hero-notebook-cover { display: none; }
  .hero-koru-img { width: 220px; }
  .report-grid { grid-template-columns: 1fr 1fr; }
  .field-cards-row { grid-template-columns: 1fr; }
  .field-card:nth-child(1), .field-card:nth-child(2), .field-card:nth-child(3) { transform: none; margin-top: 0; }
  .sticky-notes-row { grid-template-columns: 1fr; }
  .sticky-note:nth-child(2) { transform: none; }
  .nav { padding: 0 20px; }
  .container { padding: 0 20px; }
  .section-field-notes { padding: 56px 20px 40px; }
  .section-dispatches { padding: 64px 20px 56px; }
  .footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 560px) {
  .report-grid { grid-template-columns: 1fr; }
  .report-card { transform: none; padding: 22px; }
  .hero { padding: 52px 20px 40px; }
  .waitlist-input-row { flex-direction: column; }
  .waitlist-input { border-radius: 9999px; border-right: 2px solid var(--soft-brown); }
  .waitlist-btn { border-radius: 9999px; padding: 13px 20px; }
  .waitlist-form-dark .waitlist-input { border-right: 2px solid rgba(255,255,255,0.2); }
}
