/* ── SHARED DESIGN SYSTEM ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --blush:     #fce4ec;
  --petal:     #f8bbd0;
  --rose:      #f48fb1;
  --deep-rose: #e91e8c;
  --coral:     #f06292;
  --ink:       #1a0a12;
  --muted:     #6b3a52;
  --surface:   #fff5f8;
  --card:      #ffffff;
  --mono:      'DM Mono', monospace;
  --serif:     'Cormorant Garamond', serif;
  --sans:      'Syne', sans-serif;
  --shadow-sm: 0 4px 16px rgba(233,30,140,.08);
  --shadow-md: 0 10px 36px rgba(233,30,140,.14);
  --shadow-lg: 0 20px 60px rgba(233,30,140,.18);
  --radius:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .35;
}

/* ── CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 14px; height: 14px;
  background: var(--deep-rose);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .18s ease, height .18s ease, background .2s;
  mix-blend-mode: multiply;
}
#cursor.hovered { width: 38px; height: 38px; background: var(--rose); opacity: .55; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(252,228,236,.78);
  border-bottom: 1px solid rgba(244,143,177,.22);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem; font-style: italic;
  color: var(--deep-rose);
  text-decoration: none;
  letter-spacing: .01em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: .3rem 0;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--deep-rose);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep-rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 500; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 5vw 5rem;
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
}
.page-tag {
  font-family: var(--mono);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral);
  background: rgba(244,143,177,.12);
  border: 1px solid var(--petal);
  padding: .32rem .85rem; border-radius: 2rem;
  display: inline-block; margin-bottom: 1.6rem;
  animation: fadeUp .7s ease both;
}
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.04;
  animation: fadeUp .8s .1s ease both;
}
.page-h1 em { color: var(--deep-rose); font-style: italic; }
.page-sub {
  font-family: var(--serif); font-size: 1.12rem;
  color: var(--muted); line-height: 1.75;
  max-width: 540px; margin-top: 1.2rem;
  animation: fadeUp .9s .2s ease both;
}

/* ── SECTION INNER ── */
.section-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 3rem 5vw 6rem;
  position: relative; z-index: 1;
}

/* ── LABEL ── */
.label {
  font-family: var(--mono);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .8rem;
}
.label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px; background: var(--coral);
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--ink);
  border-top: 1px solid rgba(244,143,177,.12);
  padding: 2rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-name { font-family: var(--serif); font-style: italic; color: var(--rose); font-size: 1.1rem; }
.footer-nav { display: flex; gap: 1.5rem; list-style: none; }
.footer-nav a { font-family: var(--mono); font-size: .65rem; letter-spacing: .1em; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--rose); }
.footer-copy { font-family: var(--mono); font-size: .63rem; letter-spacing: .08em; color: rgba(255,255,255,.25); }

/* ── BUTTONS ── */
.btn {
  font-family: var(--mono); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; padding: .85rem 1.9rem;
  border-radius: 3rem; transition: all .25s ease; cursor: none; display: inline-block;
}
.btn-primary { background: var(--deep-rose); color: #fff; box-shadow: 0 6px 28px rgba(233,30,140,.25); border: none; }
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border: 1.5px solid var(--rose); color: var(--deep-rose); background: transparent; }
.btn-outline:hover { background: var(--petal); transform: translateY(-2px); }

/* ── CARD ── */
.card {
  background: var(--card);
  border: 1px solid var(--petal);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--rose), transparent);
  margin: 1.8rem 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes spin   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
}
.portrait-img {
  width: 101%;        /* 👈 reduce this */
  height: 101%;
  object-fit: contain;  /* 👈 IMPORTANT: no cropping */
}
/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--card);
  border: 1px solid var(--petal);
  color: var(--deep-rose);
  font-size: 1rem;

  transition: all 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--petal), var(--rose));
  color: #fff;
  box-shadow: var(--shadow-sm);
}



.portrait-img {
  width: 110%;
  height: 110%;
  object-fit: cover;
}

/* ── MOBILE RESPONSIVE FIX ── */
@media (max-width: 768px) {

  body {
    cursor: auto; /* mobile has no cursor */
  }

  .hero-visual {
    transform: scale(0.85);
  }

  .avatar-ring {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .contact-hero {
    padding: 6rem 5vw 3rem;
  }

  .ch-title {
    font-size: 2.2rem;
  }

}

img {
  max-width: 100%;
  height: auto;
}
