:root {
    --dark: #1a1208;
    --brown: #5c3d1e;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f0dfa0;
    --cream: #f5edd8;
    --cream-dark: #e8d9bc;
    --ivory: #faf6ed;
    --text-dark: #1a1208;
    --text-mid: #4a3520;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'EB Garamond', serif;
    background: var(--ivory);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(26,18,8,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
  }
  .nav-logo {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(240,223,160,0.75);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  /* HERO */
  #hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0e0a04 0%, #2d1c0a 40%, #5c3416 70%, #7a4a20 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
  }
  .hero-grain {
    position: absolute;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }
  .hero-ring {
    position: absolute;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-ring-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
  .hero-ring-2 { width: 400px; height: 400px; top: 0px; right: 50px; }
  .hero-ring-3 { width: 200px; height: 200px; bottom: 80px; left: 80px; border-color: rgba(201,168,76,0.08); }
  .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding-top: 5rem;
  }
  .hero-eyebrow {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-tagline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(240,223,160,0.7);
    max-width: 380px;
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-cta {
    display: inline-block;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: background 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .hero-cta:hover { background: var(--gold-light); }
  .hero-portrait-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
  }
  .hero-oval-outer {
    width: 340px;
    height: 420px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-oval-outer::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
  }
  .hero-oval-img {
    width: 300px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
  }
  .hero-oval-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ABOUT */
  #about { background: var(--cream); padding: 6rem 0; }
  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
  .about-left { position: sticky; top: 7rem; }
  .about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(201,168,76,0.25);
  }
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: sepia(10%) saturate(90%);
  }
  .about-bio {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-mid);
  }
  .about-bio p + p { margin-top: 1.5rem; }
  .about-bio p:first-child::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    float: left;
    line-height: 0.75;
    margin: 0.1em 0.1em 0 0;
    color: var(--gold);
  }

  /* STORY BREAK */
  #story-break {
    position: relative;
    height: 500px;
    overflow: hidden;
  }
  .story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.55) sepia(20%);
    display: block;
  }
  .story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
  }
  .story-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-style: italic;
    font-weight: 300;
    color: #fff;
    max-width: 720px;
    line-height: 1.45;
  }
  .story-quote-rule { width: 48px; height: 1px; background: var(--gold); }
  .story-attr {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* PRESS */
  #press { background: var(--dark); padding: 0 0 6rem; }
  .press-banner {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    margin-bottom: 4rem;
  }
  .press-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.45) sepia(30%);
    display: block;
  }
  .press-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 3rem 4rem;
    background: linear-gradient(to top, rgba(10,6,2,0.85) 0%, transparent 60%);
  }
  .press-inner { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.15);
  }
  .press-card {
    background: #1e1408;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: background 0.3s;
    cursor: pointer;
    text-decoration: none;
  }
  .press-card:hover { background: #2a1c0c; }
  .press-pub {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .press-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--cream);
    font-style: italic;
  }
  .press-excerpt {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(240,223,160,0.5);
    flex: 1;
  }
  .press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,168,76,0.12);
  }
  .press-date {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: rgba(201,168,76,0.4);
  }
  .press-link {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .press-link::after { content: ' →'; }

  /* CV */
  #cv { background: var(--ivory); padding: 6rem 0; }
  .cv-inner { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }
  .cv-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }
  .cv-sidebar { background: var(--dark); padding: 2.5rem; align-self: start; }
  .cv-sidebar-section + .cv-sidebar-section { margin-top: 2rem; }
  .cv-sidebar-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .cv-sidebar ul { list-style: none; }
  .cv-sidebar ul li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(240,223,160,0.65);
    padding: 0.2rem 0;
  }
  .cv-sidebar ul li::before {
    content: '—';
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.7rem;
  }
  .cv-section + .cv-section { margin-top: 2.5rem; }
  .cv-section-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--cream-dark);
  }
  .cv-entry { margin-bottom: 1.5rem; }
  .cv-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
  }
  .cv-entry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
  }
  .cv-entry-date {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
  }
  .cv-entry-org {
    font-size: 0.85rem;
    color: var(--brown);
    font-style: italic;
    margin-bottom: 0.4rem;
  }
  .cv-entry-desc { font-size: 0.9rem; line-height: 1.7; color: #5a4530; }

  /* CONTACT */
  #contact {
    background: linear-gradient(135deg, #0e0a04 0%, #2d1c0a 60%, #5c3416 100%);
    padding: 6rem 0 4rem;
    text-align: center;
  }
  .contact-inner { max-width: 600px; margin: 0 auto; padding: 0 2rem; }
  .contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(240,223,160,0.6);
    font-style: italic;
    margin-bottom: 2.5rem;
  }
  .contact-email {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 0.2rem;
  }
  .footer-rule { width: 100%; height: 1px; background: rgba(201,168,76,0.12); margin: 4rem 0 2rem; }
  .footer-bottom {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.3);
  }

  /* SHARED */
  .section-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.15;
  }
  .section-title em { font-style: italic; color: var(--brown); }
  .gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0 2.5rem; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
TABLET — max 900px
═══════════════════════════════════════ */
@media (max-width: 900px) {
nav { padding: 1rem 1.5rem; }
.nav-links { gap: 1.2rem; }
.nav-links a { font-size: 0.58rem; letter-spacing: 0.2em; }

```
#hero { padding: 0 2rem; }
.hero-content {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 6rem;
}
.hero-oval-outer { width: 240px; height: 300px; }
.hero-oval-img { width: 210px; height: 265px; }

.about-inner {
  padding: 0 2rem;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.press-banner-text { padding: 2rem 2rem; }
.press-inner { padding: 0 2rem; }
.press-grid { grid-template-columns: repeat(2, 1fr); }

.cv-inner { padding: 0 2rem; }
.cv-grid { grid-template-columns: 220px 1fr; gap: 2.5rem; }
```

}

/* ═══════════════════════════════════════
MOBILE — max 640px
═══════════════════════════════════════ */
@media (max-width: 640px) {
/* Nav — show hamburger, hide links */
nav { padding: 1rem 1.2rem; }
.nav-links { display: none; }
.nav-toggle { display: flex; }

```
/* Hero — stack vertically, portrait on top */
#hero {
  padding: 0 1.5rem;
  align-items: flex-start;
  min-height: 100svh;
}
.hero-content {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  padding-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
}
.hero-text { order: 2; }
.hero-portrait-wrap { order: 1; justify-content: center; }
.hero-oval-outer { width: 200px; height: 250px; }
.hero-oval-img { width: 175px; height: 220px; }
.hero-tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
.hero-divider { margin-left: auto; margin-right: auto; }
.hero-ring-1 { width: 300px; height: 300px; top: -50px; right: -80px; }
.hero-ring-2 { display: none; }

/* About — single column */
#about { padding: 3.5rem 0; }
.about-inner {
  padding: 0 1.5rem;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.about-left { position: static; }
.about-photo { aspect-ratio: 16/9; margin-top: 1.5rem; }
.about-photo img { object-position: center 20%; }
.about-bio { font-size: 1.05rem; }
.about-bio p:first-child::first-letter { font-size: 3rem; }

/* Story break — shorter on mobile */
#story-break { height: 340px; }
.story-quote { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }

/* Press — single column cards */
#press { padding: 0 0 3.5rem; }
.press-banner { height: 260px; }
.press-banner-text { padding: 1.5rem; }
.press-inner { padding: 0 1.5rem; }
.press-grid { grid-template-columns: 1fr; }
.press-card { padding: 1.5rem; }
.press-excerpt { display: none; } /* hide excerpt on mobile for cleaner cards */

/* CV — single column, sidebar above main */
#cv { padding: 3.5rem 0; }
.cv-inner { padding: 0 1.5rem; }
.cv-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.cv-sidebar { padding: 1.8rem; }

/* Contact */
#contact { padding: 3.5rem 0 2.5rem; }
.contact-inner { padding: 0 1.5rem; }

/* Gold rule centered on mobile */
.gold-rule { margin-left: auto; margin-right: auto; }
```

}

/* ═══════════════════════════════════════
SMALL MOBILE — max 380px
═══════════════════════════════════════ */
@media (max-width: 380px) {
.hero-oval-outer { width: 170px; height: 215px; }
.hero-oval-img { width: 148px; height: 190px; }
.nav-logo { font-size: 0.62rem; letter-spacing: 0.2em; }
.press-card { padding: 1.2rem; }
.cv-sidebar { padding: 1.4rem; }
}

/* ═══════════════════════════════════════
LARGE DESKTOP — min 1300px
═══════════════════════════════════════ */
@media (min-width: 1300px) {
nav { padding: 1.2rem 5rem; }
#hero { padding: 0 5rem; }
.hero-content { max-width: 1200px; }
.hero-oval-outer { width: 380px; height: 460px; }
.hero-oval-img { width: 340px; height: 415px; }
.about-inner { max-width: 1200px; padding: 0 5rem; }
.press-inner { max-width: 1200px; padding: 0 5rem; }
.press-banner-text { padding: 3rem 5rem; }
.cv-inner { max-width: 1200px; padding: 0 5rem; }
}
