:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b6b6b;
  --accent: #E0BFB8;
  --border: #eaeaea;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { width: min(1100px, 92vw); margin: 0 auto; }

/* ===== HEADER (Animated Transparent) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled .header-inner { padding: 10px 0; }

/* Brand Animation */
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
  transform-origin: left center;
  opacity: 1;
}
.brand span {
  background: var(--text);
  color: #fff;
  padding: 2px 6px;
  margin-right: 6px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.site-header.scrolled .brand {
  transform: scale(0.9);
  opacity: 0.85;
}

/* Navigation */
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}
.nav a:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nav a.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== HERO ===== */
.hero { position: relative; }
.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 9vw, 96px);
  line-height: .95;
  letter-spacing: .03em;
}
.accent { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--muted); margin-top: 12px; }
.cta { display:flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.cta.center { justify-content: center; }

.btn {
  background: var(--text);
  color:#fff;
  border: 1px solid var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  display:inline-block;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn:hover { opacity:.9; transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.link {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  text-decoration:none;
  padding-bottom: 2px;
}
.link:hover { opacity:.85; }

/* ===== Shimmer Accent Animation ===== */
@keyframes shimmerMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== HERO IMAGE ENHANCED ===== */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0 60px;
}
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
  border-radius: 24px;
  z-index: 0;
  transform: translate(10px, 10px);
  opacity: 0.3;
  background-size: 200% 200%;
  animation: shimmerMove 8s ease-in-out infinite;
}
.hero-image img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 460px;
  border-radius: 22px;
  border: 6px solid #fff;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
}
.hero-image img:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ===== ABOUT SECTION ENHANCED ===== */
#about .two-col {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 50px;
  position: relative;
}
#about .two-col > div:last-child {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .two-col > div:last-child::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), #fff);
  background-size: 200% 200%;
  animation: shimmerMove 10s ease-in-out infinite;
  z-index: 0;
  transform: translate(12px, 12px);
  opacity: 0.25;
}

/* === Refined Circular/Oval About Image — Face Centered === */
#about img {
  position: relative;
  z-index: 1;
  width: 75%;
  max-width: 300px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
  object-position: center 25%;
  aspect-ratio: 1 / 1;
  margin-top: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 700px) {
  #about img {
    border-radius: 50% / 45%;
    width: 80%;
    max-width: 320px;
    object-position: center 25%;
  }
}
#about img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
#about p { max-width: 50ch; line-height: 1.65; }

/* === Moodboard Button (Aligned and Styled) === */
.moodboard-cta {
  margin-top: 28px;
}
#about .moodboard-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.2;
}
#about .moodboard-link:hover {
  background: #d8a9a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .moodboard-cta {
    text-align: center;
    margin-top: 24px;
  }
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt {
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.two-col {
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: start;
}
.pill-list {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill-list li {
  list-style:none;
  border:1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
}

/* ===== FEATURE / GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.gallery a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.gallery a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== MOODBOARD ===== */
.moodboard-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.moodboard-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.moodboard-gallery img:hover {
  transform: scale(1.03);
}

/* ===== CV PAGE ===== */
.cv {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 40px;
  margin-top: 40px;
}
.cv-photo {
  max-width: 240px;
  border-radius: 12px;
  overflow: hidden;
  align-self: start;
}
.cv-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.cv h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-section { padding: 80px 0; }
.portfolio-section + .portfolio-section {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 60px;
}
.portfolio-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
  text-align: center;
}
.portfolio-hero {
  text-align: center;
  margin-bottom: 40px;
}
.portfolio-hero img {
  width: 100%;
  max-width: 780px;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-hero img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.portfolio-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 20px 0;
}
.footer-inner .social a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px;
  height:30px;
  border:1px solid var(--border);
  border-radius:999px;
  color: var(--text);
  text-decoration:none;
  transition: all 0.2s ease;
}
.footer-inner .social a:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0 40px; }
  .hero-image img { width: 70%; margin: 0 auto; }
  #about .two-col { grid-template-columns: 1fr; text-align: center; }
  #about img { width: 60%; margin: 20px auto 0; border-radius: 50%; object-position: center 25%; }
  .gallery, .moodboard-gallery, .portfolio-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  }
  .cv { grid-template-columns: 1fr; padding: 28px; }
  .cv-photo { margin: 0 auto 20px; max-width: 70%; }
  .portfolio-section { padding: 60px 0; }
  .nav { gap: 10px; }
  .nav a { padding: 6px 12px; }
}
