:root {
  --accent: #c47c3e;
  --white:  #f7f3ee;
  --muted:  rgba(247, 243, 238, 0.4);
  --line:   rgba(255, 255, 255, 0.14);
  --card:   rgba(255, 255, 255, 0.08);
}


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

html {
  scroll-behavior: smooth;
}


body {
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--white);
  overflow-x: hidden;
  position: relative;
}


.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, #3b2a1a 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, #1e3040 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 30%, #2d1e0f 0%, transparent 50%),
    #0e0c0a;
  animation: bgShift 12s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(8deg) brightness(1.06); }
}


body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.45;
}


.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(196, 124, 62, 0.25), transparent 70%);
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(40, 90, 130, 0.3), transparent 70%);
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 55%;
  background: radial-gradient(circle, rgba(196, 124, 62, 0.12), transparent 70%);
  animation-delay: -6s;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 30px) scale(1.08); }
}


.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}


nav {
  padding: 36px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: rise 0.7s ease 0.1s forwards;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}


.hero {
  padding: 100px 0 72px;
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-bio {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
  max-width: 46ch;
}


.sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 60px 0;
  opacity: 0;
  animation: rise 0.7s ease 0.5s forwards;
}

.sep::before,
.sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.sep-diamond {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: 0.7;
}


.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  opacity: 0;
  animation: rise 0.8s ease 0.6s forwards;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 36px;
}

.info-key {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
}


.contact-block {
  margin: 64px 0 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: rise 0.7s ease 0.75s forwards;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.contact-email::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.contact-email:hover {
  color: var(--accent);
}

.contact-email:hover::after {
  width: 100%;
}

.socials {
  display: flex;
  gap: 24px;
}

.socials a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.socials a:hover {
  color: var(--white);
}


footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(247, 243, 238, 0.2);
  letter-spacing: 0.1em;
}


@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 480px) {
  .page { padding: 0 20px; }
  h1 { font-size: 3rem; }
  .info-row { padding: 16px 20px; }
}
