:root {
    --paper: #f5ecdc;
    --paper-deep: #ecdfca;
    --ink: #1f1a14;
    --ink-soft: #4a3f31;
    --coral: #d65947;
    --coral-deep: #b03b2b;
    --mustard: #d9a441;
    --moss: #4a6b3a;
    --lime: #9fc830;   /* lymphoma awareness ribbon */
    --lime-deep: #7ba01f;
    --cream: #fbf6ec;
    --stitch: #2a2218;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Newsreader', Georgia, serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    position: relative;
  }

  /* Paper texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(139,108,68,0.04) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(74,107,58,0.03) 0%, transparent 40%),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.08 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
  }

  /* All real content above the noise overlay */
  .layer { position: relative; z-index: 2; }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-variation-settings: "SOFT" 50;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 500;
  }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(245,236,220,0.85);
    border-bottom: 1px dashed rgba(31,26,20,0.2);
  }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.005em;
    position: relative;
  }

  .logo .accent {
    color: var(--coral-deep);
  }

  .logo-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    width: 100%;
    height: 10px;
    pointer-events: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Newsreader', serif;
    font-weight: 400;
    position: relative;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--coral-deep); }

  .nav-links a:hover::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: -4px;
    height: 6px;
    background: var(--lime);
    z-index: -1;
    border-radius: 2px;
  }

  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 100px;
    transition: transform 0.2s, background 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--coral-deep) !important;
    transform: rotate(-2deg);
  }

  .nav-cta:hover::after { display: none; }

  /* ===== HERO ===== */
  .hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px 120px;
    position: relative;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
  }

  .hero-deeno {
    width: clamp(260px, 26vw, 380px);
    max-height: 600px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-top: -60px;
    margin-left: 40px;
    animation: float 6s ease-in-out infinite;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 112px);
    font-weight: 600;
    margin-bottom: 32px;
  }

  .hero h1 .loop-word {
    font-style: italic;
    color: var(--coral-deep);
    position: relative;
    display: inline-block;
  }

  .hero h1 .loop-word::after {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 6px;
    height: 14px;
    background: var(--lime);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
  }

  .hero-sub {
    font-size: 20px;
    color: var(--ink-soft);
    margin-bottom: 40px;
    max-width: 520px;
  }

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

  .btn-primary {
    background: var(--lime);
    color: var(--ink);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    border: 2px solid var(--ink);
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--lime-deep);
    color: var(--cream);
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 14px 28px;
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 17px;
    border: 2px solid var(--ink);
    border-radius: 100px;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
    transform: rotate(1deg);
  }

  /* Hero illustration — yarn ball + bunny */
  .hero-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .yarn-ball-big,
  .hero-ribbon {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(8px 12px 0 rgba(31,26,20,0.12));
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
  }

  .sticker {
    position: absolute;
    background: var(--cream);
    border: 2px solid var(--ink);
    padding: 12px 18px;
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--coral-deep);
    border-radius: 4px;
    box-shadow: 4px 4px 0 var(--ink);
    transform: rotate(-6deg);
    z-index: 3;
  }

  .sticker-top { top: 8%; right: -4%; transform: rotate(8deg); background: var(--lime); color: var(--ink); }
  .sticker-bottom { bottom: 6%; left: -2%; }

  /* ===== STITCH DIVIDER ===== */
  .stitch-divider {
    display: block;
    width: 100%;
    margin: 0;
    height: 24px;
    color: var(--ink);
  }

  /* ===== MISSION STRIP ===== */
  .mission-strip {
    background: var(--lime);
    color: var(--ink);
    padding: 28px 0;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }

  .marquee {
    display: flex;
    gap: 60px;
    animation: scroll 32s linear infinite;
    white-space: nowrap;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
  }

  .marquee span {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .marquee span::after {
    content: '✦';
    color: var(--coral-deep);
    font-style: normal;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===== IMPACT STATS ===== */
  .impact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 32px;
    text-align: center;
  }

  .section-label {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    color: var(--coral-deep);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
  }

  .stat {
    padding: 32px 24px;
    position: relative;
  }

  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: repeating-linear-gradient(to bottom, var(--ink) 0, var(--ink) 4px, transparent 4px, transparent 10px);
  }

  .stat-number {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--lime-deep);
    line-height: 1;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 16px;
    color: var(--ink-soft);
    font-family: 'Newsreader', serif;
  }

  /* ===== SHOP ===== */
  .shop {
    background: var(--paper-deep);
    padding: 100px 32px;
    position: relative;
  }

  .shop-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .shop-header-left h2 {
    font-size: clamp(36px, 5vw, 64px);
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 48px 32px;
  }

  .product-card {
    background: var(--cream);
    border: 2px solid var(--ink);
    padding: 16px 16px 24px;
    box-shadow: 6px 6px 0 var(--ink);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
  }

  .product-card:nth-child(odd) { transform: rotate(-1.2deg); }
  .product-card:nth-child(even) { transform: rotate(1deg); }
  .product-card:nth-child(3n) { transform: rotate(-0.5deg); }

  .product-card:hover {
    transform: rotate(0) translateY(-6px);
    box-shadow: 10px 10px 0 var(--coral-deep);
  }

  .product-image {
    background: var(--paper);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
  }

  .product-image svg { width: 70%; height: 70%; }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--lime);
    color: var(--ink);
    font-family: 'Caveat', cursive;
    font-size: 18px;
    padding: 4px 10px;
    border: 1.5px solid var(--ink);
    transform: rotate(8deg);
    z-index: 2;
  }

  .product-tag.sold {
    background: var(--coral);
    color: var(--cream);
  }

  .product-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .product-maker {
    font-family: 'Caveat', cursive;
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }

  .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
  }

  .product-price {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
  }

  .product-btn {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 8px 16px;
    font-family: 'Fraunces', serif;
    font-size: 14px;
    cursor: pointer;
    border-radius: 100px;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
  }

  .product-btn:hover { background: var(--coral-deep); }

  .product-btn:disabled {
    background: var(--ink-soft);
    cursor: not-allowed;
    opacity: 0.6;
  }

  /* ===== STORY SECTION ===== */
  .story {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 32px;
    text-align: center;
    position: relative;
  }

  .story-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--ink);
    margin: 40px auto;
    max-width: 820px;
    position: relative;
  }

  .story-quote::before,
  .story-quote::after {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 100px;
    color: var(--coral-deep);
    font-style: normal;
    line-height: 1;
    position: absolute;
  }

  .story-quote::before { left: -50px; top: -20px; }
  .story-quote::after { right: -50px; bottom: -50px; }

  .story-attribution {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--ink-soft);
    margin-top: 24px;
  }

  /* ===== SUBMIT YOUR CREATION ===== */
  .submit {
    background: var(--ink);
    color: var(--cream);
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
  }

  .submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 10% 20%, rgba(159,200,48,0.08) 0%, transparent 30%),
      radial-gradient(circle at 90% 80%, rgba(214,89,71,0.1) 0%, transparent 35%);
  }

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

  .submit h2 {
    color: var(--cream);
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 24px;
  }

  .submit h2 em {
    color: var(--lime);
    font-style: italic;
  }

  .submit p {
    color: rgba(251,246,236,0.85);
    font-size: 19px;
    margin-bottom: 16px;
  }

  .submit .section-label {
    color: var(--lime);
  }

  .steps {
    list-style: none;
    counter-reset: step;
  }

  .steps li {
    counter-increment: step;
    padding: 24px 0 24px 80px;
    border-bottom: 1px dashed rgba(251,246,236,0.2);
    position: relative;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
  }

  .steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--lime);
    font-style: italic;
  }

  .steps li:last-child { border-bottom: none; }

  .steps li small {
    display: block;
    font-family: 'Newsreader', serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(251,246,236,0.7);
    margin-top: 4px;
  }

  /* ===== ADDRESS CARD ===== */
  .address-card {
    background: var(--cream);
    color: var(--ink);
    border: 2px solid var(--lime);
    padding: 28px 32px;
    margin-top: 32px;
    box-shadow: 6px 6px 0 var(--lime-deep);
    max-width: 480px;
  }

  .address-card .address-label {
    font-family: 'Caveat', cursive;
    color: var(--coral-deep);
    font-size: 22px;
    margin-bottom: 8px;
  }

  .address-card address {
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 500;
  }

  /* ===== CONTACT / FORM ===== */
  .contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 32px;
    text-align: center;
  }

  .form-card {
    background: var(--cream);
    border: 2px solid var(--ink);
    padding: 48px;
    box-shadow: 8px 8px 0 var(--ink);
    margin-top: 40px;
    text-align: left;
    position: relative;
  }

  .form-card::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 100px;
    height: 28px;
    background: rgba(217,164,65,0.6);
    border: 1px solid rgba(31,26,20,0.2);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--ink);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    font-family: 'Newsreader', serif;
    font-size: 16px;
    color: var(--ink);
    border-radius: 0;
    transition: all 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    background: var(--cream);
    box-shadow: 4px 4px 0 var(--coral);
    transform: translate(-2px, -2px);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 18px;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.25s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--coral-deep);
    transform: translateY(-2px);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--paper-deep);
    border-top: 2px dashed var(--ink);
    padding: 60px 32px 32px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }

  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--ink);
  }

  .footer-col a {
    display: block;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 4px 0;
    font-size: 15px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--coral-deep); }

  .footer-tag {
    font-family: 'Newsreader', serif;
    font-size: 15px;
    color: var(--ink-soft);
    margin-top: 12px;
    max-width: 380px;
  }

  .footer-bottom {
    border-top: 1px dashed rgba(31,26,20,0.3);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--ink-soft);
  }

  .footer-bottom .ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .ribbon-icon {
    width: 14px;
    height: 14px;
    background: var(--lime);
    border-radius: 2px;
    transform: rotate(45deg);
    display: inline-block;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-deeno { order: -1; width: 220px; margin: 0 auto 20px; }
    .hero-illustration { order: -1; max-width: 360px; margin: 0 auto; }
    .stats { gap: 12px; }
    .stat { padding: 16px 8px; }
    .stat-number { font-size: clamp(32px, 11vw, 56px); }
    .stat-label { font-size: 13px; line-height: 1.4; }
    .stat:not(:last-child)::after { display: none; }
    .submit-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { gap: 16px; font-size: 14px; }
    .nav-links li:not(:last-child) { display: none; }
    .form-card { padding: 28px; }
    .story-quote::before, .story-quote::after { font-size: 60px; }
    .story-quote::before { left: -10px; top: -10px; }
    .story-quote::after { right: -10px; bottom: -30px; }
  }