/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
  --bg:        #FCFBF7;
  --sand:      #efe3cf;
  --mid:       #dccbb3;
  --gold:      #8B6914;
  --gold-ui:   #7a5c10;
  --gold-sub:  #c4a96e;
  --ink:       #2b2b2b;
  --ink-mid:   #251e1e;
  --ink-muted: #7a7068;

  --k20: rgba(43, 43, 43, 0.16);
  --k08: rgba(43, 43, 43, 0.07);
  --g40: rgba(139, 105, 20, 0.40);
  --g15: rgba(139, 105, 20, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   GLOBAL COMPONENTS
   ============================================================ */
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
}


/* ============================================================
   DESKTOP NAV
   ============================================================ */
.nav-desktop {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 247, 0.96);
  border-bottom: 1px solid var(--k08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── TOP STRIP ── */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 56px;
  border-bottom: 1px solid var(--k08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-logo strong {
  color: var(--ink);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
  outline: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 1px;
}

.nav-link.active {
  color: var(--ink);
}

.nav-link.active::after {
  transform: scaleX(1);
  background: var(--ink);
}

/* ── BANNER ── */
.nav-banner {
  padding: 14px 64px 0;
}

.nav-page-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 12px;
}

.nav-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin: 0 5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
}

.nav-page-title em {
  font-style: italic;
  color: var(--gold);
}

.nav-breadcrumb {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: flex-end;
  padding-bottom: 4px;
}

.nav-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold-sub) 0%,
    var(--g40) 20%,
    var(--g15) 55%,
    transparent 100%
  );
}

/* ============================================================
   HERO
   ============================================================ */

main {
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: calc(100vh - 110px);
  overflow: hidden;
}

/* ── TEXT SIDE ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 72px 40px 80px;
  position: sticky;
  margin: 0 auto;
}

.eye-brow {
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-ui);
  margin-bottom: 24px;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 10vw, 144px);
  font-weight: 300;
  line-height: 0.88;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-sub);
  margin-bottom: 32px;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 52px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  width: fit-content;
}

.hero-cta::after {
  content: '→';
  font-size: 12px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

/* ── IMAGE SIDE ── */
.hero-image-container {
  position: relative;
  overflow: hidden;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--gold);
  padding: 100px 80px;
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.about-heading em {
  font-style: italic;
  color: rgba(252, 251, 247, 0.75);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.about-body p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(252, 251, 247, 0.85);
}

.about-cta {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  border-bottom: 1px solid rgba(252, 251, 247, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.about-cta:hover {
  border-color: var(--bg);
  opacity: 0.75;
}

/* ============================================================
   BIOGRAPHY
   ============================================================ */

.bio-page {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 80px 100px;
  max-width: 1160px;
  margin: 0 auto;
}

.bio-portrait {
  position: sticky;
  top: 120px;
}

.bio-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(12%);
}

.bio-prose {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 6px;
}

.bio-prose p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-mid);
}

.bio-prose em {
  font-style: italic;
}

.bio-drop {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink);
}

.drop-cap {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 80px 100px;
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Left panel ── */
.contact-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 36px;
  filter: grayscale(12%);
}

.contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.contact-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 18px;
  margin-top: 2px;
}

.contact-social a {
  font-size: 15px;
  color: var(--ink-muted);
  transition: color 0.25s ease;
}

.contact-social a:hover {
  color: var(--gold);
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mid);
  padding: 14px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  resize: none;
  line-height: 1.75;
}

.form-field select {
  cursor: pointer;
  color: var(--ink-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7068'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

.form-field select option {
  color: var(--ink);
}

.form-submit {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  margin-top: auto;
}

.footer-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--g15) 20%,
    var(--g40) 55%,
    var(--gold-sub) 100%
  );
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social a {
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}
/* ============================================================
   RESPONSIVE — MOBILE SIDEBAR
   ============================================================ */

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink);
  padding: 0;
  line-height: 1;
}

/* ── Sidebar ── */
.nav-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: var(--g40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.nav-sidebar.is-open {
  transform: translateX(0);
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--bg);
  align-self: flex-end;
  padding: 0;
  margin-bottom: 48px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sidebar-close:hover {
  opacity: 1;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 12px 0;
  border-bottom: 1px solid rgba(252, 251, 247, 0.15);
  transition: opacity 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  opacity: 0.65;
}

/* ── Overlay ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, 0.3);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sidebar-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   RESPONSIVE — BREAKPOINTS
   ============================================================ */

@media (max-width: 768px) {

  /* Nav */
  .nav-hamburger { display: block; }
  .nav-top { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-banner { padding: 10px 24px 0; }
  .nav-page-title { font-size: 26px; margin: 0 1rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 48px 24px 40px;
  }
  .hero-image-container {
    height: 120vw;
  }

  .hero-image {
    height: 100%;
    object-position: center;
    object-fit: cover;
  }

  .break-point {
    display: block;
  }
  
  .hero-image-container::before { display: none; }

  /* About */
  .about { padding: 64px 24px; }

  /* Biography */
  .bio-page {
    grid-template-columns: 1fr;
    padding: 48px 24px 72px;
    gap: 40px;
  }
  .bio-portrait { position: static; }

  /* Contact */
  .contact-page {
    grid-template-columns: 1fr;
    padding: 48px 24px 72px;
    gap: 48px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 24px;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
  padding: 56px 64px 100px;
}

.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(8%);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .gallery-section { padding: 40px 16px 72px; }
  .gallery-grid { columns: 1; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
}

/* ============================================================
   PERFORMANCE
   ============================================================ */

.perf-list {
  padding: 64px 80px 100px;
  max-width: 1160px;
  margin: 0 auto;
}

.perf-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}

.perf-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold-sub) 0%,
    var(--g15) 60%,
    transparent 100%
  );
}

/* ── Video ── */
.perf-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  overflow: hidden;
}

.perf-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Info ── */
.perf-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perf-type {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.perf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--gold-ui);
}

.perf-title em {
  font-style: italic;
}

.perf-composer {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
}

.perf-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--k08);
}

.perf-meta span {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .perf-list { padding: 40px 24px 72px; }
  .perf-entry {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
}

/* ============================================================
   TEACHING
   ============================================================ */

/* ── Intro ── */
.teach-intro {
  padding: 72px 80px 64px;
  border-bottom: 1px solid var(--k08);
}

.teach-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.teach-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}

.teach-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* ── Experience ── */
.teach-exp {
  padding: 72px 80px 100px;
}

.teach-exp-inner {
  max-width: 900px;
  margin: 0 auto;
}

.teach-exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.teach-exp-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-sub);
  margin-bottom: 48px;
}

.teach-exp-list {
  display: flex;
  flex-direction: column;
}

.teach-exp-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--k08);
}

.teach-exp-item:first-child {
  padding-top: 0;
}

.teach-exp-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.teach-exp-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.teach-exp-place {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.teach-exp-date {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 4px;
}

.teach-exp-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
  padding-top: 4px;
}

@media (max-width: 768px) {
  .teach-intro { padding: 48px 24px 40px; }
  .teach-exp { padding: 48px 24px 72px; }
  .teach-exp-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
