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

/* ── Page ── */
body {
  background:
    radial-gradient(ellipse at 10% 10%, #c8dfc0 0%, transparent 50%),
    radial-gradient(ellipse at 80% 5%,  #b8d8ed 0%, transparent 45%),
    radial-gradient(ellipse at 5%  80%, #d4c9b8 0%, transparent 45%),
    radial-gradient(ellipse at 90% 75%, #c2cfe8 0%, transparent 45%),
    radial-gradient(ellipse at 55% 90%, #f0c8bc 0%, transparent 40%),
    radial-gradient(ellipse at 40% 40%, #e8ede4 0%, transparent 55%),
    #eef2ec;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ── Ticker ── */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: #2a2a2a;
  z-index: 100;
  padding: 7px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f8f6f2;
  padding: 0 10px;
}

.ticker-track .sep {
  color: #888;
  padding: 0 4px;
  letter-spacing: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.page {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0 5vw;
  overflow: hidden;
}

/* ── Giant title ── */
.giant-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 17vw, 220px);
  color: #2a2a2a;
  line-height: 0.9;
  letter-spacing: -4px;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  z-index: 1;
  padding-top: calc(2.5vh + 32px);
  user-select: none;
}

/* ── Name / role row ── */
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 2.5vh;
  position: relative;
  z-index: 3;
}

.meta-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 26px);
  color: #2a2a2a;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.5;
}

.meta-role {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 20px);
  color: #888;
}

.role-word {
  transition: color 0.2s ease;
  cursor: default;
}

.role-word:hover {
  color: #1a1a1a;
}

/* ── Photo ── */
.photo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
}

.photo-wrap {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 58vh, 520px);
  width: clamp(180px, 32vw, 360px);
  flex-shrink: 0;
  transition: box-shadow 0.4s ease;
}


.photo-wrap img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(360px, 75vh, 680px);
  width: auto;
  filter: none;
}


.photo-speech {
  max-width: 220px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.1vw, 15px);
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.photo-container:hover .photo-speech {
  opacity: 1;
  transform: translateX(0);
}

/* ── Bottom row ── */
.bottom-row {
  position: absolute;
  bottom: 6vh;
  left: 5vw;
  right: 20vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}

.bio {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 1vw, 15px);
  color: #666;
  line-height: 1.8;
  max-width: 280px;
}

.year {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  color: #ccc;
  letter-spacing: 1px;
}

/* ── Floating items ── */
.item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  z-index: 5;
  user-select: none;
}

.item-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #3a3028;
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

.item-tooltip { position: absolute; }

.item-hover-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2a2a2a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.item-tooltip:hover .item-hover-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.item-hover-text--left {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(4px);
}

.item-tooltip:hover .item-hover-text--left {
  transform: translateX(0) translateY(0);
}

.item-hover-text--below {
  bottom: auto;
  top: calc(100% + 8px);
  transform: translateX(0) translateY(-4px);
}

.item-tooltip:hover .item-hover-text--below {
  transform: translateX(0) translateY(0);
}

/* macOS Folder */
.folder {
  width: 68px;
  height: 54px;
  background: linear-gradient(160deg, #7ab4dc 0%, #4f8fc4 60%, #3a7ab5 100%);
  border-radius: 3px 9px 9px 9px;
  position: relative;
  box-shadow: 0 3px 10px rgba(74,130,190,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.folder::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 28px;
  height: 12px;
  background: linear-gradient(160deg, #8fc4e8 0%, #7ab4dc 100%);
  border-radius: 5px 5px 0 0;
}

.folder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px 9px 9px 9px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}

.item:hover .folder {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(74,130,190,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* App icons */
.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.app-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

/* Instagram — real gradient */
.app-icon-instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb8b 0%, #ee653d 25%, #d42e81 50%, #a237b6 70%, #3e5fc8 100%);
  color: #fff;
}

/* LinkedIn — real blue */
.app-icon-linkedin {
  background: #0077b5;
  color: #fff;
}

/* Figma — brand gradient */
.app-icon-figma {
  background: linear-gradient(135deg, #1abcfe 0%, #0acf83 35%, #ff7262 65%, #f24e1e 80%, #a259ff 100%);
  color: #fff;
  cursor: default;
}

/* Procreate — dark */
.app-icon-procreate {
  background: radial-gradient(circle at 30% 30%, #3a3a3a, #0a0a0a);
  color: #fff;
  cursor: default;
}

/* Photo thumbnail */
.file-thumb {
  width: 68px;
  height: 84px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #d4c9b5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #ddd;
  transition: transform 0.15s;
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.item-photo:hover .file-thumb {
  transform: scale(1.06);
}

/* ── Hover hint ── */
.page:hover .giant-title {
  color: #111;
}

.page:hover .year {
  color: #aaa;
}

/* ── Right-click Context Menu ── */
#ctx-menu {
  display: none;
  position: fixed;
  z-index: 9999;
  min-width: 200px;
  background: rgba(245, 245, 247, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 5px 0;
  font-family: -apple-system, 'Inter', sans-serif;
  font-size: 13px;
  color: #1d1d1f;
  user-select: none;
}

.ctx-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  cursor: default;
  border-radius: 6px;
  margin: 0 4px;
  white-space: nowrap;
}

.ctx-item:hover {
  background: #0063d3;
  color: white;
}

.ctx-sep {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 4px 8px;
}

/* ── Desktop-only: hide mobile elements ── */
.mobile-app-folder  { display: none; }
.mobile-ios-header  { display: none; }
.mobile-dock        { display: none; }
.ios-grid           { display: contents; } /* transparent wrapper on desktop */

/* ══════════════════════════════════════════
   TABLET  ≤ 1024px
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .giant-title {
    font-size: clamp(72px, 13vw, 160px);
    padding-top: calc(2vh + 28px);
  }
  .meta-row { margin-top: 1.5vh; }
  .photo-wrap {
    height: clamp(220px, 48vh, 420px);
    width: clamp(140px, 26vw, 280px);
  }
  .photo-wrap img { height: clamp(280px, 62vh, 540px); }
  .photo-speech { max-width: 180px; font-size: clamp(11px, 1vw, 13px); }
  .folder { width: 58px; height: 46px; }
  .app-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; }
  .item-label { font-size: 9px; }
  .item-photo { display: none; }
  .bottom-row { right: 24vw; bottom: 4vh; }
}

/* ══════════════════════════════════════════
   MOBILE  ≤ 900px  —  iOS HOME SCREEN
   ══════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Full-screen phone layout */
  body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* Ticker stays at top */
  .ticker-wrap { flex-shrink: 0; }

  /* ── iOS Header ── */
  .mobile-ios-header {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 16px 20px 0;
  }

  .mobile-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 2px 0 4px;
  }

  .msb-time { font-size: 13px; font-weight: 700; }

  .msb-right {
    display: flex;
    gap: 5px;
    font-size: 11px;
    color: #333;
  }

  .mobile-profile-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0 6px;
  }

  .mpw-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 2px 14px rgba(0,0,0,0.14);
    margin-bottom: 7px;
  }

  .mpw-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .mpw-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(9px, 3vw, 12px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .mpw-role {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    letter-spacing: 0.04em;
  }

  /* ── Page: scrollable icon area ── */
  .page {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    display: block;
    padding: 8px 0 110px;
    cursor: default;
  }

  /* Hide all desktop elements */
  .giant-title    { display: none; }
  .meta-row       { display: none; }
  .photo-container{ display: none; }
  .bottom-row     { display: none; }
  .item-photo     { display: none; }
  .item-hover-text{ display: none; }
  #ctx-menu       { display: none !important; }

  /* ── 4-column iOS icon grid ── */
  .ios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 4px;
    padding: 16px 12px;
    justify-items: center;
  }

  /* Every item: in-flow, centered */
  .item {
    position: relative !important;
    top: auto !important; bottom: auto !important;
    left: auto !important; right: auto !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  /* Hide tool app icons (they're inside the Tools folder) */
  .item-icon      { display: none !important; }
  .item-decorative{ display: none !important; }

  /* Show stefoundry even though it's decorative */
  .item-stefoundry { display: flex !important; }

  /* Resume thumbnail → square iOS icon */
  .item-photo { display: flex !important; }
  .item-photo .file-thumb {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  }

  /* ── Folder → iOS rounded square icon ── */
  .folder {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  }
  .folder::before { display: none; }
  .folder::after  { border-radius: 14px; }

  /* Per-project colors */
  .item-focuspocus .folder { background: linear-gradient(145deg, #ff7675, #d63031); }
  .item-stefoundry .folder { background: linear-gradient(145deg, #636e72, #2d3436); }
  .item-travalia   .folder { background: linear-gradient(145deg, #74b9ff, #0984e3); }
  .item-percentl   .folder { background: linear-gradient(145deg, #ffeaa7, #fdcb6e); }
  .item-wato       .folder { background: linear-gradient(145deg, #a29bfe, #6c5ce7); }
  .item-airbnb     .folder { background: linear-gradient(145deg, #ff7675, #ff5a5f); }
  .item-picks      .folder { background: linear-gradient(145deg, #f9a8d4, #ec4899); }
  .item-budget     .folder { background: linear-gradient(145deg, #55efc4, #00b894); }

  .item-label {
    font-size: 10px;
    color: #1a1a1a;
    text-align: center;
    margin-top: 5px;
    max-width: 72px;
    line-height: 1.3;
  }

  /* ── Tools folder ── */
  .mobile-app-folder {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative !important;
    top: auto !important; bottom: auto !important;
    left: auto !important; right: auto !important;
    width: 100%;
    margin: 0;
  }

  .maf-grid {
    width: 60px;
    height: 60px;
    background: rgba(160,175,190,0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .maf-icon {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    text-decoration: none;
  }

  .maf-ig        { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
  .maf-li        { background: #0077b5; }
  .maf-figma     { background: #1e1e1e; }
  .maf-procreate { background: #111; }
  .maf-ps        { background: #001E36; }
  .maf-canva     { background: linear-gradient(135deg, #7D2AE7, #3969E7); }

  /* ── Dock ── */
  .mobile-dock {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 380px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 10px 16px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.55);
    z-index: 50;
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 4px;
  }

  .dock-icon {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .dock-ig        { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
  .dock-li        { background: #0077b5; }
  .dock-email     { background: linear-gradient(145deg, #55efc4, #00b894); }
  .dock-portfolio { background: linear-gradient(145deg, #a29bfe, #6c5ce7); }

  .mobile-dock a span {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #2a2a2a;
    font-weight: 500;
  }
}

/* ══════════════════════════════════════════
   EXTRA SMALL  ≤ 390px
   ══════════════════════════════════════════ */
@media (max-width: 390px) {
  .ios-grid { gap: 16px 2px; padding: 12px 8px; }
  .folder   { width: 52px; height: 52px; border-radius: 12px; }
  .maf-grid { width: 52px; height: 52px; border-radius: 12px; }
  .dock-icon { width: 46px; height: 46px; font-size: 19px; border-radius: 11px; }
  .item-label { font-size: 9px; }
  .mpw-photo  { width: 90px; height: 90px; }
  .mpw-name   { font-size: 13px; }
}

/* ══════════════════════════════════════════
   LARGE PHONES  ≥ 400px (iPhone 14 Pro Max etc.)
   ══════════════════════════════════════════ */
@media (min-width: 400px) and (max-width: 900px) {
  .ios-grid  { gap: 28px 6px; padding: 20px 16px; }
  .folder    { width: 74px; height: 74px; border-radius: 17px; }
  .folder::after { border-radius: 17px; }
  .maf-grid  { width: 74px; height: 74px; border-radius: 17px; }
  .item-photo .file-thumb { width: 74px; height: 74px; border-radius: 17px; }
  .dock-icon { width: 60px; height: 60px; font-size: 24px; border-radius: 14px; }
  .item-label { font-size: 11px; }
  .mpw-photo { width: 120px; height: 120px; }
}

/* ── Say Hello FAB (desktop) ── */
.lp-hello-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-hello-fab:hover { background: #111; transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.lp-hello-fab:hover .lp-fab-tooltip { opacity: 1; transform: translateX(-8px); }

.lp-fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: none;
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

@media (max-width: 900px) {
  .lp-hello-fab { display: none; }
}

/* ── Contact Modal (landing page) ── */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 16px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.15s;
}
.contact-modal-close:hover { color: #333; }
.contact-modal-title { font-size: 22px; font-weight: 700; color: #2a2a2a; margin-bottom: 6px; }
.contact-modal-sub { font-size: 13px; color: #888; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 5px; }
.cf-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.cf-input { border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: 13px; color: #2a2a2a; outline: none; transition: border-color 0.2s; background: #fafafa; }
.cf-input:focus { border-color: #2a2a2a; background: #fff; }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-submit { background: #2a2a2a; color: #fff; border: none; border-radius: 8px; padding: 12px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.cf-submit:hover { background: #111; }
.cf-submit:disabled { background: #888; cursor: default; }
.cf-status { font-size: 12px; text-align: center; min-height: 18px; }
.cf-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.cf-check-option { display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 7px 12px; border: 1px solid rgba(0,0,0,0.12); border-radius: 20px; font-size: 12px; color: #2a2a2a; background: #fafafa; transition: all 0.15s; user-select: none; }
.cf-check-option:hover { border-color: #2a2a2a; background: #f0f0f0; }
.cf-check-option input[type="radio"] { display: none; }
.cf-check-option:has(input:checked) { background: #2a2a2a; color: #fff; border-color: #2a2a2a; }

/* ── Intro Splash ── */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 10% 10%, #c8dfc0 0%, transparent 50%),
    radial-gradient(ellipse at 80% 5%,  #b8d8ed 0%, transparent 45%),
    radial-gradient(ellipse at 5%  80%, #d4c9b8 0%, transparent 45%),
    radial-gradient(ellipse at 90% 75%, #c2cfe8 0%, transparent 45%),
    radial-gradient(ellipse at 55% 90%, #f0c8bc 0%, transparent 40%),
    radial-gradient(ellipse at 40% 40%, #e8ede4 0%, transparent 55%),
    #eef2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}

#intro-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

#intro-words span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(18px, 3vw, 32px);
  color: #2a2a2a;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#intro-smiley {
  font-size: clamp(22px, 3.5vw, 38px) !important;
  letter-spacing: 0 !important;
  color: #2a2a2a;
  margin-top: 4px;
}
