@font-face {
  font-family: "Juana Portfolio";
  src: local("Fontspring-DEMO-juana-light"), local("Juana Light"), local("Juana");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --lilac: #A692C7;
  --plum: #51415F;
  --grey: #B9B7C0;
  --paper: #FFFFFF;
  --soft-paper: #FBFAFC;
  --header-h: 88px;
  --serif: "Juana Portfolio", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--plum);
  font-family: var(--sans);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 8px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow: 0 18px 50px rgba(81,65,95,.10);
  transition: background .35s ease, box-shadow .35s ease, top .35s ease;
}
.site-header.scrolled {
  top: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 38px rgba(81,65,95,.12);
}

.nav-brand {
  width: 126px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.nav-brand img { width: 96px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  position: relative;
  padding: 13px 17px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--plum);
  border-radius: 14px;
  transition: color .25s ease, background .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 8px;
  height: 1px;
  background: var(--lilac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a:hover { background: rgba(166,146,199,.08); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(166,146,199,.12);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--plum);
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-video-bg,
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
}
.hero-video-bg {
  z-index: -5;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.055);
  filter: blur(22px) saturate(.86) brightness(.93);
}
.hero-video {
  z-index: -4;
  object-fit: contain;
  object-position: center center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(81,65,95,.10);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.62) 0 14%, rgba(255,255,255,.28) 34%, rgba(81,65,95,.12) 76%, rgba(81,65,95,.20) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.01), rgba(81,65,95,.08));
}

.hero-brand {
  position: relative;
  width: min(520px, calc(100vw - 44px));
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 40px 36px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 10px 10px 100px 10px;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(13px) saturate(115%);
  -webkit-backdrop-filter: blur(13px) saturate(115%);
  box-shadow: 0 30px 80px rgba(81,65,95,.20);
}
.hero-brand::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-top: 1px solid var(--lilac);
  border-left: 1px solid var(--lilac);
  border-radius: 30px 0 0 0;
  opacity: .72;
}
.hero-logo { width: min(290px, 66vw); }
.hero-title {
  margin: 17px 0 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--plum);
  transform: translateX(.21em);
}
.hero-kicker {
  margin: 19px 0 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-corner {
  position: absolute;
  z-index: -1;
  opacity: .16;
  pointer-events: none;
}
.hero-corner--left {
  width: min(420px, 36vw);
  left: -90px;
  bottom: -80px;
  transform: rotate(180deg);
}
.hero-corner--right {
  width: min(320px, 30vw);
  right: -80px;
  top: 23%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  text-shadow: 0 2px 12px rgba(81,65,95,.45);
}
.scroll-cue span:first-child {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,.95), rgba(255,255,255,0));
  animation: pulseLine 1.8s ease-in-out infinite;
}
@keyframes pulseLine { 50% { transform: scaleY(.6); opacity: .4; } }

.section-divider {
  position: relative;
  z-index: 8;
  height: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.section-divider img {
  width: min(760px, 70vw);
  height: 92px;
  object-fit: fill;
  transform: translateY(-46px);
  filter: drop-shadow(0 5px 12px rgba(81,65,95,.04));
}

.about {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 138px 0 110px;
  background: linear-gradient(180deg, #fff 0%, #fbfafc 100%);
  overflow: hidden;
  isolation: isolate;
}
.about-watermark {
  position: absolute;
  z-index: -1;
  width: min(760px, 64vw);
  right: -270px;
  bottom: -190px;
  opacity: .055;
  transform: rotate(-7deg);
}
.about-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
  gap: clamp(64px, 8vw, 125px);
  align-items: center;
}
.section-label {
  display: grid;
  grid-template-columns: auto minmax(72px, 185px) auto;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--grey);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.section-label img { width: 100%; height: 12px; object-fit: fill; opacity: .75; }
.about-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 6.4vw, 94px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--lilac);
}
.about-copy h2 {
  max-width: 620px;
  margin: 30px 0 24px;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--plum);
}
.about-copy p {
  max-width: 660px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--plum);
}
.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(166,146,199,.28);
  color: var(--grey);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  padding: 30px 30px 0 0;
}
.portrait-placeholder {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 4px 4px 125px 4px;
  border: 1px solid rgba(166,146,199,.26);
  background:
    radial-gradient(circle at 72% 24%, rgba(166,146,199,.23), transparent 27%),
    linear-gradient(145deg, #fbfafc 8%, #f3eff8 52%, #ded5ea 120%);
  box-shadow: 0 32px 80px rgba(81,65,95,.13);
}
.portrait-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(166,146,199,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,146,199,.22) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom right, rgba(0,0,0,.55), transparent 70%);
}
.portrait-initials {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(88px, 10vw, 150px);
  font-weight: 300;
  color: rgba(166,146,199,.38);
}
.portrait-placeholder-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  font-size: 9px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--grey);
}
.portrait-shape {
  position: absolute;
  pointer-events: none;
}
.portrait-shape--back {
  z-index: 0;
  width: 54%;
  right: -6%;
  top: 0;
  opacity: .20;
  transform: rotate(7deg);
}
.portrait-shape--front {
  z-index: 3;
  width: 43%;
  right: 0;
  bottom: 38px;
  opacity: .72;
}
.portrait-wrap figcaption {
  margin-top: 15px;
  padding-left: 3px;
  color: var(--grey);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: .08em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { top: 12px; width: calc(100% - 24px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    width: min(290px, calc(100vw - 24px));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(166,146,199,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 22px 50px rgba(81,65,95,.14);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .24s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 15px 14px; }
  .about { padding-top: 120px; }
  .about-inner { grid-template-columns: 1fr; gap: 72px; }
  .portrait-wrap { width: min(560px, 100%); margin-inline: auto; }
}

@media (max-width: 560px) {
  .section-divider img { width: 88vw; height: 72px; transform: translateY(-36px); }
  .nav-brand { width: 104px; justify-content: start; }
  .nav-brand img { width: 82px; }
  .hero-brand {
    min-height: 335px;
    padding: 34px 24px 31px;
    border-radius: 8px 8px 70px 8px;
  }
  .hero-logo { width: 250px; }
  .hero-title { letter-spacing: .32em; }
  .hero-kicker { letter-spacing: .16em; text-align: center; }
  .about { padding: 105px 0 90px; }
  .about-inner { width: calc(100% - 32px); }
  .section-label { grid-template-columns: auto 76px auto; gap: 10px; }
  .about-copy h1 { font-size: clamp(49px, 17vw, 72px); }
  .portrait-wrap { padding-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Hero logo refinement — full Lena Frank logo as the focal point */
.hero-brand {
  width: min(620px, calc(100vw - 44px));
  min-height: 430px;
  padding: 34px 42px 38px;
}
.hero-logo {
  width: min(430px, 78vw);
  max-height: 300px;
  object-fit: contain;
}
.hero-title {
  margin-top: 8px;
  font-size: clamp(16px, 1.55vw, 21px);
  letter-spacing: .48em;
  transform: translateX(.24em);
}
.hero-kicker { display: none; }

@media (max-width: 640px) {
  .hero-brand {
    width: calc(100vw - 28px);
    min-height: 360px;
    padding: 28px 24px 30px;
  }
  .hero-logo {
    width: min(360px, 82vw);
    max-height: 245px;
  }
  .hero-title {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: .38em;
    transform: translateX(.19em);
  }
}

/* Use the original uploads/LF_logo2-02.svg in the hero.
   The source SVG contains generous artboard whitespace, so the wrapper crops only the empty artboard area — the logo artwork itself stays untouched. */
.hero-logo-crop {
  width: min(390px, 72vw);
  height: min(390px, 72vw);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: -14px 0 -22px;
}
.hero-logo-crop .hero-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: scale(2.05);
  transform-origin: 50% 50%;
}
@media (max-width: 640px) {
  .hero-logo-crop {
    width: min(330px, 78vw);
    height: min(330px, 78vw);
    margin: -10px 0 -18px;
  }
  .hero-logo-crop .hero-logo {
    width: 100%;
    height: 100%;
    max-height: none;
    transform: scale(2.05);
  }
}

/* v5 — clean hero branding directly on the video */
.hero-brand {
  width: min(620px, calc(100vw - 44px));
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  transition: opacity 1.25s ease;
}
.hero-brand::before { display: none; }
.hero-brand.is-dimmed { opacity: .10; }

/* No decorative shape elements around the logo in the hero. */
.hero-corner { display: none !important; }

.hero-logo-crop {
  width: min(430px, 74vw);
  height: min(430px, 74vw);
  margin: -22px 0 -32px;
}
.hero-logo-crop .hero-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: scale(2.05);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 8px 28px rgba(36, 28, 44, .18));
}
.hero-title {
  margin: 0;
  color: #FBFAFC;
  text-shadow: 0 4px 18px rgba(36, 28, 44, .26);
}

@media (max-width: 640px) {
  .hero-brand {
    width: calc(100vw - 28px);
    min-height: 0;
    padding: 0;
  }
  .hero-logo-crop {
    width: min(350px, 82vw);
    height: min(350px, 82vw);
    margin: -16px 0 -26px;
  }
}

/* v6 — requested hero spacing refinement only */
.hero-logo-crop .hero-logo {
  filter: none;
}
.hero-title {
  margin-top: 68px;
}
@media (max-width: 640px) {
  .hero-title {
    margin-top: 52px;
  }
}

/* v7 — clean video and exact logo geometry */
/* Remove every glow / wash layer from the hero. The video itself is shown untouched. */
.hero {
  background: #51415F;
}
.hero-video-bg {
  display: none !important;
}
.hero-overlay {
  display: none !important;
  background: none !important;
}
.hero::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
}
.hero-video {
  filter: none !important;
  opacity: 1 !important;
}

/* Keep the uploaded logo artwork visually unchanged: no filters, shadows,
   pseudo-elements or decorative shapes are applied to it. */
.hero-logo-crop .hero-logo {
  filter: none !important;
  box-shadow: none !important;
}
.hero-logo-crop::before,
.hero-logo-crop::after,
.hero-logo::before,
.hero-logo::after {
  display: none !important;
  content: none !important;
}
