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

    :root {
      --bg:      #faf8f5;
      --ink:     #2a3438;
      --muted:   #7a8a8f;
      --soft:    #556368;
      --rule:    #e8e4df;
      --teal:    #5a9a9a;
      --magenta: #b8587a;
      --sage:    #a8bcb5;
      --serif:   'Lora', Georgia, serif;
      --mono:    'DM Mono', monospace;
      --max:     800px;
      --gradient: linear-gradient(135deg, var(--teal), var(--magenta));
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--serif);
      font-size: 17px;
      line-height: 1.75;
    }

    /* ── NAV ── */
    nav {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 32px 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    nav .wordmark {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.05em;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    nav .wordmark:hover { opacity: 0.7; }

    nav ul { list-style: none; display: flex; gap: 24px; }

    nav ul a {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    nav ul a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: width 0.3s ease;
    }

    nav ul a:hover {
      color: var(--ink);
    }

    nav ul a:hover::after {
      width: 100%;
    }

    /* ── HERO WRAPPER with gradient background ── */
    .hero-wrap {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: linear-gradient(135deg,
        rgba(90,154,154,0.15) 0%,
        rgba(168,188,181,0.12) 30%,
        rgba(250,248,245,0.8) 50%,
        rgba(184,88,122,0.12) 70%,
        rgba(184,88,122,0.15) 100%);
    }

    /* Shared gradient line decorator */
    .hero-wrap::after,
    #about::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg,
        transparent 0%,
        var(--teal) 25%,
        var(--magenta) 50%,
        var(--teal) 75%,
        transparent 100%);
      opacity: 0.15;
    }

    /* Animated gradient mesh canvas */
    #gradient-mesh {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: opacity 0.3s ease;
      animation: bounce 2s infinite;
      text-decoration: none;
    }

    .scroll-indicator span {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-indicator svg {
      width: 24px;
      height: 24px;
      stroke: url(#arrowGradient);
      stroke-width: 2;
      fill: none;
    }

    .scroll-indicator:hover {
      opacity: 0.6;
      animation-play-state: paused;
    }

    /* Scroll up indicator */
    .scroll-up {
      bottom: 70px;
      flex-direction: column-reverse;
      animation: bounceUp 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    @keyframes bounceUp {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }

    /* ── HERO CONTENT ── */
    header {
      position: relative;
      z-index: 2;
      max-width: var(--max);
      margin: auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 56px;
      align-items: center;
      flex: 1;
    }

    header .text h1 {
      font-size: clamp(1.9rem, 5vw, 2.5rem);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--ink);
    }

    header .text h1 em {
      font-style: italic;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    header .text p {
      color: var(--soft);
      font-size: 16px;
      max-width: 440px;
      margin-bottom: 14px;
    }

    /* Gradient text effect */
    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 500;
    }

    .cta {
      display: inline-block;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: white;
      background: var(--gradient);
      padding: 12px 24px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(90,154,154,0.25);
      opacity: 0.9;
    }

    /* ── PHOTO ── */
    .photo-wrap {
      flex-shrink: 0;
      padding-top: 6px;
      position: relative;
    }

    .photo-wrap::before {
      content: '';
      position: absolute;
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
      background: var(--gradient);
      border-radius: 12%;
      opacity: 0.15;
      z-index: -1;
    }

    .photo-wrap img {
      max-width: 200px;
      border-radius: 10%;
      object-fit: cover;
      display: block;
      opacity: 0.95;
      transition: all 0.4s ease;
      border: 3px solid var(--bg);
    }

    .photo-wrap img:hover {
      opacity: 1;
      transform: scale(1.02);
      box-shadow: 0 8px 24px rgba(90,154,154,0.2);
    }

    /* ── SECTION WRAPPERS ── */
    .section-wrap {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 0 140px;
    }

    .content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 24px;
      margin-bottom: 40px;
    }

    section {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
    }

    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 32px;
      font-weight: 400;
    }

    /* ── ABOUT ── */
    #about {
      position: relative;
      background: linear-gradient(135deg,
        rgba(90,154,154,0.03) 0%,
        rgba(250,248,245,1) 50%,
        rgba(184,88,122,0.03) 100%);
    }

    #about section p:not(.section-label) {
      color: var(--soft);
      margin-bottom: 18px;
      line-height: 1.8;
    }

    #about section p:last-of-type { margin-bottom: 0; }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }

    .tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.05em;
      padding: 6px 14px;
      color: white;
      border-radius: 20px;
      cursor: default;
      transition: all 0.3s ease;
      background: var(--gradient);
    }

    .tag:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(90,154,154,0.3);
    }

    /* ── CONTACT ── */
    #contact {
      background: linear-gradient(135deg,
        rgba(184,88,122,0.03) 0%,
        rgba(250,248,245,1) 50%,
        rgba(90,154,154,0.03) 100%);
    }

    #contact section p:not(.section-label) {
      font-size: 16px;
      color: var(--soft);
      max-width: 420px;
      margin-bottom: 28px;
    }

    .contact-links { display: flex; gap: 16px; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      max-width: var(--max);
      margin: 0 auto;
      padding: 32px 24px 40px;
      text-align: center;
    }

    footer p { font-family: var(--mono); font-size: 11px; color: var(--muted); }

    /* ── RESPONSIVE ── */
    @media (max-width: 520px) {
      .hero-wrap { 
        min-height: 100vh; 
        padding-bottom: 80px; 
      }
      .section-wrap { 
        min-height: 100vh; 
        padding: 60px 0 80px; 
      }
      header {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        margin: 0 auto;
        text-align: center;
      }
      header .text {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      header .text p {
        max-width: 100%;
      }
      .photo-wrap { 
        order: -1;
        margin: 0 auto;
      }
      nav ul { gap: 14px; }
      .scroll-indicator { bottom: 24px; }
      .scroll-up { bottom: 70px; }
    }