
    :root {
      --paper: #f5f0e8;
      --paper-dark: #ede6d3;
      --ink: #1a1a2e;
      --ink-light: #3d3d5c;
      --red-line: #e8a0a0;
      --blue-line: #a0bce8;
      --margin-line: #e8a0a0;
      --accent: #4a6fa5;
      --accent2: #c0392b;
      --hole: #ccc5b3;
    }

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

    body {
      font-family: 'Patrick Hand', cursive;
      background: var(--paper);
      color: var(--ink);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ─── GRAIN OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      opacity: 0.45;
      mix-blend-mode: multiply;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      background: rgba(245, 240, 232, 0.88);
      backdrop-filter: blur(6px);
      border-bottom: 2px solid var(--blue-line);
      box-shadow: 0 2px 0 var(--red-line);
    }

    .nav-logo {
      font-family: 'Caveat', cursive;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: -0.5px;
      text-decoration: none;
      position: relative;
    }
    .nav-logo::after {
      content: '✦';
      font-size: 0.6rem;
      position: absolute;
      top: 4px;
      right: -14px;
      color: var(--accent2);
    }

    .nav-links {
      display: flex;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Caveat', cursive;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--ink-light);
      text-decoration: none;
      padding: 6px 16px;
      border-radius: 2px;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 16px; right: 16px;
      height: 2px;
      background: var(--accent2);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover { color: var(--accent2); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* User photo placeholder */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(245,240,232,0.55), rgba(237,230,211,0.65)),
        url('YOUR_PHOTO_HERE') center/cover no-repeat;
      /* ↑ Replace YOUR_PHOTO_HERE with your image URL or local path */
      background-color: #b0bec5; /* fallback color until photo is added */
    }

    /* Loose-leaf lines on hero */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          transparent,
          transparent 31px,
          var(--blue-line) 31px,
          var(--blue-line) 33px
        );
      opacity: 0.35;
    }

    /* Red margin line */
    .hero-bg::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 80px;
      width: 2px;
      background: var(--margin-line);
      opacity: 0.6;
    }

    /* Hole punches */
    .holes {
      position: absolute;
      left: 20px;
      top: 0; bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      gap: 0;
      z-index: 2;
      pointer-events: none;
    }
    .hole {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #e8e0cc, #bbb5a0);
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 1px 2px rgba(255,255,255,0.6);
    }

    .hero-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: 20px;
    }

    .hero-content h1 {
      font-family: 'Caveat', cursive;
      font-size: clamp(3.5rem, 9vw, 7rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -1px;
      text-shadow: 3px 3px 0 rgba(255,255,255,0.5);
      margin-bottom: 12px;
      animation: fadeUp 0.7s ease both;
    }

    .hero-content .subtitle {
      font-family: 'Caveat', cursive;
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: var(--ink-light);
      margin-bottom: 36px;
      animation: fadeUp 0.7s 0.15s ease both;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .hero-tag {
      font-family: 'Caveat', cursive;
      font-size: 1rem;
      font-weight: 600;
      padding: 6px 18px;
      border: 2px solid var(--ink);
      border-radius: 2px;
      background: rgba(255,255,255,0.5);
      color: var(--ink);
      position: relative;
      transform: rotate(var(--r, 0deg));
      box-shadow: 2px 2px 0 var(--ink);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .hero-tag:nth-child(1) { --r: -1.5deg; }
    .hero-tag:nth-child(2) { --r: 1deg; }
    .hero-tag:nth-child(3) { --r: -0.5deg; }
    .hero-tag:nth-child(4) { --r: 2deg; }
    .hero-tag:nth-child(5) { --r: -1deg; }
    .hero-tag:hover {
      transform: rotate(0deg) translateY(-3px);
      box-shadow: 4px 4px 0 var(--accent2);
      color: var(--accent2);
      border-color: var(--accent2);
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Caveat', cursive;
      font-size: 1rem;
      color: var(--ink-light);
      opacity: 0.7;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: bounce 2s infinite;
    }

    /* ─── SECTIONS ─── */
    section {
      position: relative;
      min-height: 80vh;
      padding: 100px 60px 80px 100px;
      overflow: hidden;
    }

    /* Paper lines on all sections */
    section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          transparent,
          transparent 31px,
          var(--blue-line) 31px,
          var(--blue-line) 33px
        );
      opacity: 0.3;
      pointer-events: none;
    }

    /* Margin line */
    section::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 80px;
      width: 2px;
      background: var(--margin-line);
      opacity: 0.5;
      pointer-events: none;
    }

    /* Alternating section backgrounds for depth */
    section:nth-child(even) {
      background: var(--paper-dark);
    }

    .section-inner {
      position: relative;
      z-index: 2;
      max-width: 860px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'Reenie Beanie', cursive;
      font-size: 1rem;
      color: var(--accent2);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-title {
      font-family: 'Caveat', cursive;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 24px;
      position: relative;
      display: inline-block;
    }

    /* Underline drawn effect */
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 100%;
      height: 3px;
      background: var(--accent2);
      border-radius: 2px;
      transform: scaleX(1);
      transform-origin: left;
    }

    .section-body {
      font-size: 1.15rem;
      line-height: 2;
      color: var(--ink-light);
      max-width: 640px;
    }

    /* ─── CARDS ─── */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 36px;
    }

    .card {
      background: rgba(255,255,255,0.6);
      border: 2px solid var(--ink);
      border-radius: 3px;
      padding: 24px 20px;
      box-shadow: 4px 4px 0 var(--ink);
      transform: rotate(var(--cr, 0deg));
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .card:nth-child(1) { --cr: -0.8deg; }
    .card:nth-child(2) { --cr: 0.5deg; }
    .card:nth-child(3) { --cr: -0.3deg; }
    .card:nth-child(4) { --cr: 1deg; }
    .card:hover {
      transform: rotate(0deg) translateY(-4px);
      box-shadow: 6px 6px 0 var(--accent);
    }
    .card-emoji { font-size: 2rem; margin-bottom: 10px; }
    .card-title {
      font-family: 'Caveat', cursive;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .card-desc {
      font-size: 0.95rem;
      color: var(--ink-light);
      line-height: 1.7;
    }

    /* Tape strips on some cards */
    .card::before {
      content: '';
      position: absolute;
      top: -10px; left: 50%;
      transform: translateX(-50%) rotate(-2deg);
      width: 60px; height: 20px;
      background: rgba(255,220,100,0.55);
      border-radius: 2px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* ─── PHOTO PLACEHOLDER ─── */
    .photo-placeholder {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 4/3;
      border: 2px dashed var(--ink-light);
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.4);
      margin-top: 32px;
      color: var(--ink-light);
      font-family: 'Caveat', cursive;
      font-size: 1.1rem;
      gap: 10px;
      box-shadow: 4px 4px 0 var(--hole);
    }

    /* ─── ABOUT LAYOUT ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 32px;
      align-items: start;
    }
    @media (max-width: 700px) {
      .about-grid { grid-template-columns: 1fr; }
      section { padding: 80px 24px 60px 24px; }
      section::after { left: 16px; }
    }

    .sticky-note {
      background: #fef08a;
      border-radius: 2px;
      padding: 20px;
      box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
      transform: rotate(1.5deg);
      font-family: 'Caveat', cursive;
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
    }

    /* ─── FOOTER ─── */
    footer {
      position: relative;
      padding: 40px 60px 40px 100px;
      background: var(--ink);
      color: var(--paper);
      font-family: 'Caveat', cursive;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    footer a {
      color: var(--paper);
      text-decoration: none;
      margin-left: 20px;
      opacity: 0.75;
      transition: opacity 0.2s;
    }
    footer a:hover { opacity: 1; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* Photo upload notice banner */
    .photo-notice {
      background: #fff9c4;
      border-left: 4px solid #f59e0b;
      padding: 14px 20px;
      font-family: 'Caveat', cursive;
      font-size: 1.05rem;
      color: #78350f;
      margin-bottom: 20px;
      border-radius: 2px;
    }
