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

:root {
  --black:   #0E0E0C;
  --jade:    #034E37;
  --jade-lt: #0A7A55;
  --gold:    #F4BC66;
  --cream:   #FAF6EE;
  --purple:  #5F2D8B;
  --muted:   #8A887F;
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    'Pliant', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(14,14,12,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(244,188,102,0.15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-links .nav-cta a {
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 1px;
}

/* 

*/
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero-silk {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--purple) 25%, var(--jade) 65%, transparent 100%);
  animation: silkfall 6s ease-in-out infinite alternate;
}

@keyframes silkfall {
  0%   { transform: scaleY(0.85) translateY(-3%); opacity: 0.5; }
  100% { transform: scaleY(1.05) translateY(3%);  opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-silk { animation: none; opacity: 0.7; }
}

.hero-content {
  max-width: 560px;
  padding-left: 3rem;
}

.hero-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-inner {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border: 1px dashed rgba(3,78,55,0.5);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(3,78,55,0.04);
}

.hero-photo-inner p {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jade-lt);
  margin: 0;
}

.hero-photo-inner span {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero-name em {
  font-style: italic;
  color: var(--jade);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ABOUT */
.about {
  background: var(--cream);
  color: var(--black);
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  padding-top: 0.35rem;
}

.about-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.about-body .about-subhead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 1.75rem;
}

.about-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #1E1E1A;
  margin-bottom: 1.25rem;
  max-width: 580px;
}

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

/* WHAT I DO */
.work {
  background: var(--black);
  padding: 6rem 3rem;
}

.work-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 3.5rem;
  border-bottom: 0.5px solid rgba(244,188,102,0.2);
  padding-bottom: 1.5rem;
}

.work-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.work-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}

.work-card:hover { border-top-color: var(--jade-lt); }

.work-card-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 3px 8px;
}

.tag-brand  { background: rgba(3,78,55,0.2);      color: var(--jade-lt); }
.tag-person { background: rgba(95,45,139,0.2);    color: #B89FDD; }
.tag-both   { background: rgba(244,188,102,0.15); color: var(--gold); }

.work-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.work-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.work-card a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jade-lt);
  text-decoration: none;
  border-bottom: 0.5px solid var(--jade-lt);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.work-card a:hover { color: var(--cream); border-color: var(--cream); }

/* CREDIBILITY */
.cred {
  background: #0A0A08;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.cred-col h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(244,188,102,0.2);
}

.cred-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--jade-lt);
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.cred-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.cred-item strong {
  color: var(--cream);
  font-weight: 500;
}

.stat {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

/* CONTACT */
.contact {
  background: var(--cream);
  color: var(--black);
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--black);
}

.contact h2 em {
  font-style: italic;
  color: var(--jade);
}

.contact-body p {
  font-size: 0.9rem;
  color: #3A3A35;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jade);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--black); }

.contact-link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background: currentColor;
}

/* BRIDGE */
.bridge {
  background: var(--jade);
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bridge h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.15;
}

.bridge h2 em {
  font-style: italic;
  color: var(--gold);
}

.bridge-body p {
  font-size: 0.9rem;
  color: rgba(250,246,238,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border: 0.5px solid var(--cream);
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
}

.btn-light:hover {
  background: var(--cream);
  color: var(--purple);
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

footer a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
}

footer a:hover { color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links li:not(.nav-cta) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 2rem;
  }

  .hero-content { padding-left: 0; max-width: 100%; }
  .hero-photo { order: -1; }
  .hero-photo-inner { max-width: 100%; aspect-ratio: 4 / 3; }

  .about, .cred, .contact, .bridge {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .work { padding: 4rem 1.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
