

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root{
  --void: #050405;
  --panel: #0d0b0d;
  --line: rgba(239,233,230,0.09);
  --line-strong: rgba(239,233,230,0.16);
  --rose: #b98a99;
  --text: #e9e2df;
  --text-muted: #7d7278;
  --text-faint: rgba(233,226,223,0.05);

  --display: 'Cormorant Garamond', serif;
  --body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html{ scroll-behavior:smooth; }

body{
  background:var(--void);
  color:var(--text);
  font-family:var(--body);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  position:relative;
  overflow-x:hidden;
}

/* subtle grain so it doesnt look too flat ykwim */
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:999;
  pointer-events:none;
  opacity:0.05;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ display:block; max-width:100%; }

::selection{ background:var(--rose); color:var(--void); }

a:focus-visible{
  outline: 1px solid var(--rose);
  outline-offset: 4px;
}


/* thin frame around the page yuah */
.frame{
  position:fixed;
  inset:14px;
  z-index:998;
  pointer-events:none;
  border:1px solid var(--line);
}

.frame .corner{
  position:absolute;
  width:22px;
  height:22px;
}
.frame .corner::before,
.frame .corner::after{
  content:"";
  position:absolute;
  background:var(--rose);
  opacity:0.55;
}
.frame .corner::before{ width:100%; height:1px; }
.frame .corner::after{ width:1px; height:100%; }

.frame .tl{ top:-1px; left:-1px; }
.frame .tr{ top:-1px; right:-1px; }
.frame .bl{ bottom:-1px; left:-1px; }
.frame .br{ bottom:-1px; right:-1px; }

.frame .tl::before,.frame .tl::after{ top:0; left:0; }
.frame .tr::before{ top:0; right:0; }
.frame .tr::after{ top:0; right:0; }
.frame .bl::before{ bottom:0; left:0; }
.frame .bl::after{ bottom:0; left:0; }
.frame .br::before{ bottom:0; right:0; }
.frame .br::after{ bottom:0; right:0; }


/* nav */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 34px calc(6% + 14px);
}

.navbar::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(5,4,5,0.85), transparent);
  pointer-events:none;
  z-index:-1;
}

.logo{
  font-family:var(--display);
  font-style:italic;
  font-size:24px;
  font-weight:500;
  letter-spacing:0.01em;
  color:var(--text);
}

.menu ul{ display:flex; gap:40px; }
.menu ul li + li{ margin-left:40px; }

.menu a{
  font-family:var(--body);
  font-size:13px;
  font-weight:300;
  letter-spacing:0.05em;
  color:var(--text-muted);
  transition: color 0.3s ease;
}

.menu a:hover{ color:var(--rose); }


/* hero with the flower bg yessir*/
.hero{
  position:relative;
  min-height:100vh;
  width:100%;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(5,4,5,0.55) 0%, rgba(5,4,5,0.35) 40%, rgba(5,4,5,0.96) 100%),
    url('flower.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,0.85);
  pointer-events:none;
}

.ghost-text{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  padding: 0 6% 40px;
  font-family:var(--display);
  font-style:italic;
  font-weight:500;
  font-size: clamp(80px, 16vw, 260px);
  line-height:0.85;
  color:rgba(233,226,223,0.06);
  letter-spacing:-0.01em;
  user-select:none;
}


/* about +  te projects sections */
.about, .projects{
  position:relative;
  padding: 160px calc(6% + 14px) 140px;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.section-index{
  display:block;
  font-family:var(--body);
  font-size:12px;
  letter-spacing:0.24em;
  color:var(--text-muted);
  margin-bottom:20px;
}

.about h1, .projects h1{
  font-family:var(--display);
  font-style:italic;
  font-weight:500;
  font-size: clamp(42px, 6vw, 68px);
  line-height:1;
  color:var(--text);
  margin-bottom:70px;
}

/* soft glow behind sections w */
.about::before, .projects::before{
  content:"";
  position:absolute;
  top:10%;
  right:-10%;
  width:50%;
  aspect-ratio:1;
  background: radial-gradient(circle, rgba(185,138,153,0.06), transparent 70%);
  pointer-events:none;
}


.about-grid{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:70px;
  align-items:start;
}

.about-image{
  background:var(--panel);
  border: 1px solid var(--line);
  padding: 10px;
}

.about-image img{
  width:100%;
  height:auto;
  display:block;
  filter: grayscale(15%) contrast(1.05) brightness(0.92);
}

.about-text p{
  font-family:var(--display);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight:400;
  line-height:1.75;
  letter-spacing:0.01em;
  color:var(--text-muted);
  margin-bottom:30px;
  padding-left:22px;
  border-left:1px solid var(--line);
}

.about-text p:last-child{ margin-bottom:0; }

.about-text p.lede{
  font-size: clamp(24px, 2.2vw, 30px);
  color:var(--text);
  border-left-color:var(--line-strong);
}

.about-text p.lede::first-letter{
  font-size:1.6em;
  font-style:italic;
  color:var(--rose);
}


/* project boex yuh*/
.empty-frame{
  position:relative;
  min-height:280px;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--panel);
}

.empty-frame .corner{ position:absolute; width:16px; height:16px; }
.empty-frame .corner::before,
.empty-frame .corner::after{
  content:"";
  position:absolute;
  background:var(--rose);
  opacity:0.5;
}
.empty-frame .corner::before{ width:100%; height:1px; }
.empty-frame .corner::after{ width:1px; height:100%; }
.empty-frame .tl{ top:-1px; left:-1px; }
.empty-frame .tr{ top:-1px; right:-1px; }
.empty-frame .bl{ bottom:-1px; left:-1px; }
.empty-frame .br{ bottom:-1px; right:-1px; }
.empty-frame .tl::before,.empty-frame .tl::after{ top:0; left:0; }
.empty-frame .tr::before{ top:0; right:0; }
.empty-frame .tr::after{ top:0; right:0; }
.empty-frame .bl::before{ bottom:0; left:0; }
.empty-frame .bl::after{ bottom:0; left:0; }
.empty-frame .br::before{ bottom:0; right:0; }
.empty-frame .br::after{ bottom:0; right:0; }

.empty-frame p{
  font-family:var(--display);
  font-style:italic;
  font-size: clamp(20px, 2vw, 26px);
  color:var(--text-muted);
  opacity:0.7;
  animation: fade 3.6s ease-in-out infinite;
}

@keyframes fade{
  0%,100%{ opacity:0.45; }
  50%{ opacity:0.85; }
}



@media (max-width: 860px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-image{ max-width:340px; }
}

@media (max-width: 700px){
  .frame{ inset:8px; }
  .navbar{ padding: 26px calc(7% + 8px); flex-direction:column; gap:14px; align-items:flex-start; }
  .menu ul{ gap:22px; flex-wrap:wrap; }
  .about, .projects{ padding: 130px calc(7% + 8px) 90px; }
  .ghost-text{ font-size: clamp(60px, 20vw, 120px); }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
  html{ scroll-behavior:auto; }
}
