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

    :root {
      --bg:        #fdf5f0;
      --text:      #46362A;
      --muted:     #46362A;
      --accent1:   #F3638C;   /* pink */
      --accent2:   #63A6F3;   /* blue */
      --accent3:   #F3C163;   /* yellow */
      --card-bg:   #fff;
      --border:    #e8ddd6;
      --tag-pink: #F3638C;
      --tag-blue:   #4a90e2;
      --tag-yellow: #F3C163;
      /* --tag-green:  #27ae60; */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow:    0 2px 20px rgba(0,0,0,0.07);
      --shadow-hover: 0 8px 40px rgba(0,0,0,0.13);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Space Mono', monospace;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    h1,h2{
        font-weight: 400;
        color: #46362A;
    }

    p {
        color: #46362A;
        }

    /* ── CONTAINER ─────────────────────────────────── */
    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 80px;
    }

    /* ── NAV ────────────────────────────────────────── */
    nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--bg);
        padding: 28px 0 20px;
    }

    .nav-inner {
      display: flex;
      justify-content: center;
      gap: 12px;
      align-items: center;
      font-size: 20px;
      color: var(--muted);
    }
    .nav-inner a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-inner a:hover { color: var(--accent1); }
    .nav-sep { color: var(--border); }

    /* ── HERO ───────────────────────────────────────── */
    .hero {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 40px;
      padding: 48px 0 60px;
      font-weight: normal;
    }
    .hero-left {}

    .greeting-pills {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .pill {
      padding: 6px 18px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 400;
      font-family: 'Space Mono', monospace;
      animation: popIn .4s ease both;
    }
    .pill:nth-child(1) { background: var(--accent1); color: #fff; animation-delay: .1s; }
    .pill:nth-child(2) { background: var(--accent2); color: #fff; animation-delay: .2s; }
    .pill:nth-child(3) { background: var(--accent3); color: #fff; animation-delay: .3s; }

    @keyframes popIn {
      from { opacity: 0; transform: scale(.8) translateY(6px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .hero-name {
      font-family: 'Neuton', serif;
      font-size: clamp(52px, 6vw, 80px);
      line-height: 1.05;
      margin-bottom: 20px;
      animation: fadeUp .5s .2s ease both;
      
    }
    .wave { display: inline-block; animation: waveHand 1.8s ease-in-out infinite; transform-origin: 70% 80%; }
    @keyframes waveHand {
      0%,100% { transform: rotate(0deg); }
      20%      { transform: rotate(-20deg); }
      40%      { transform: rotate(15deg); }
      60%      { transform: rotate(-10deg); }
      80%      { transform: rotate(8deg); }
    }

    .hero-tagline {
      font-size: clamp(20px, 1.5vw, 18px);
      line-height: 1.6;
      color: var(--text);
      margin-bottom: 6px;
      animation: fadeUp .5s .3s ease both;
    }
    .tagline-accent1 {
      color: var(--accent1);
      font-weight: 700;
      font-family: 'Space Mono', monospace;
    }
    
    .tagline-accent2 {
    color: var(--accent2);
      font-weight: 700;
      font-family: 'Space Mono', monospace;
    }

    .hero-sub {
      font-size: 20px;
      line-height: 1.6;
      color: var(--text);
      margin-top: 18px;
      animation: fadeUp .5s .4s ease both;
    }
    .hero-sub a {
      color: var(--accent2);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Profile photo */
    .hero-photo-wrapper {
    width: 400px;
    height: 400px;
    perspective: 800px;
    flex-shrink: 0;
    }

    .hero-photo-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    }

.hero-photo-wrapper:hover .hero-photo-inner {
  transform: rotateY(180deg);
}

.hero-photo-front,
.hero-photo-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 4px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.hero-photo-back {
  transform: rotateY(180deg);
}

    /* Contact bar */
    .contact-bar {
      display: flex;
      align-items: center;
      gap: 24px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 14px 24px;
      width: fit-content;
      margin-top: 32px;
      font-size: 16px;
      background: var(--card-bg);
      animation: fadeUp .5s .5s ease both;
      flex-wrap: wrap;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color .2s;
    }
    .contact-item:hover { color: var(--accent1); }
    .contact-icon {
      width: 18px;
      height: 18px;
      opacity: .6;
    }
    .contact-sep { color: var(--border); font-size: 18px; }

    /* CTA */
    .cta-section {
      text-align: center;
      padding: 40px 0 16px;
    }
    .cta-label {
      font-size: 16px;
      color: var(--muted);
      font-weight: 500;
      display: block;
      margin-bottom: 8px;
    }
    .cta-arrow {
      font-size: 22px;
      animation: bounce 1.5s ease infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(6px); }
    }

    /* ── WORK CARDS ─────────────────────────────────── */
    .work-section {
      padding: 12px 0 60px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

  
    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--accent1);
    }
    .card:nth-child(1) { animation-delay: .1s; }
    .card:nth-child(2) { animation-delay: .2s; }
    .card:nth-child(3) { animation-delay: .3s; }
    .card:nth-child(4) { animation-delay: .4s; }

    .card-title {
      font-family: 'Neuton', serif;
      font-size: clamp(40px, 2.5vw, 40px);
      line-height: 1.2;
      margin-bottom: 12px;
      padding-bottom: 12px;
    }
    .card-desc-accent {
      font-weight: 600;
      font-family: 'Space Mono', monospace;
      font-size: 18px;
    }
    .card-desc-accent.pink { color: var(--accent1); }
    .card-desc-accent.blue { color: var(--accent2); }
    .card-desc-accent.yellow   { color: var(--accent3); }

    .card-desc {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 12px;
    padding-bottom: 12px;

    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .tag {
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 400;
      font-family: 'Space Mono', monospace;
    }
    .tag.pink  { background:var(--accent1) ; color: #fff0eb; }
    .tag.blue    { background:var(--tag-blue) ; color: #f0edff; }
    .tag.yellow  { background: var(--accent3); color: #f0edff; }
    /* .tag.green   { background: #e8f8f0; color: var(--tag-green); }
    .tag.teal    { background: #e0f9f4; color: var(--accent3); } */

 .card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1000px) auto 52px;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
  animation: fadeUp .5s ease both;
  overflow: hidden;
  min-width: 0;
  height: 340px;
}

.card-left {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-right {
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  max-width: 370px;
  max-height: 340px;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-arrow {
  font-size: 40px;
  color: var(--muted);
  transition: transform .2s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
  height: 100%;
  flex-shrink: 0;
}
.card:hover .card-arrow { transform: translateX(4px); color: var(--accent1); }

    /* ── ABOUT SECTION ──────────────────────────────── */
    .about-section {
      padding: 24px 0 60px;
    }

    .about-photos {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    }

    .about-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    }

    .about-captions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-left: 180px;
    padding-right: 180px;
    }

    .about-caption {
      font-size: 16px;
      color: var(--muted);
      text-align: center;
      line-height: 1.5;
      height: 100px;
      width: 280px;
    }

    /* floating stickers */
    .sticker {
      position: absolute;
      font-size: 32px;
      pointer-events: none;
      animation: float 3s ease-in-out infinite;
    }
    .sticker-sushi  { top: -18px; left: -12px; animation-delay: 0s; }
    .sticker-tablet { bottom: -14px; right: -10px; animation-delay: .8s; font-size: 26px; }
    .sticker-bear   { bottom: -18px; right: -14px; animation-delay: .4s; }

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

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
      border-top: 1.5px solid var(--border);
      padding: 36px 0 40px;
      text-align: center;
    }
    .footer-message {
      font-family: 'Neuton', serif;
      font-style: italic;
      font-size: clamp(16px, 1.6vw, 20px);
      line-height: 1.5;
      color: var(--text);
      margin-bottom: 16px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      font-size: 14px;
    }
    .footer-links a {
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--accent1); }
    .footer-sep { color: var(--border); }

    /* Responsive */
    @media (max-width: 900px) {
      .container { padding: 0 24px; }
      .hero { grid-template-columns: 1fr; }
      .hero-photo { width: 150px; height: 150px; }
      .card { grid-template-columns: 1fr; }
      .card-img-placeholder { display: none; }
      .about-photos { grid-template-columns: 1fr; }
      .about-captions { grid-template-columns: 1fr; } /* add this */

    }
