:root {
  --paper: #FFFFFF;
  --paper-alt: #F6F4EF;
  --ink: #17140F;
  --muted: #746C5E;
  --hairline: #E4DFD3;
  --accent: #33453A;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Inter', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 22px; } }

.link {
  display: inline-block; font-size: 0.92rem; letter-spacing: 0.01em;
  padding-bottom: 3px; border-bottom: 1px solid var(--ink);
  transition: border-color .2s ease, color .2s ease;
}
.link:hover { color: var(--accent); border-color: var(--accent); }
.link.quiet { border-color: var(--hairline); color: var(--muted); }
.link.quiet:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
  padding-top: env(safe-area-inset-top, 0px);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.2rem;
}
nav.links { display: flex; align-items: center; gap: 30px; }
nav.links a { font-size: 0.85rem; color: var(--muted); }
nav.links a:hover { color: var(--ink); }
.mobile-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 780px) {
  nav.links { display: none; }
  .mobile-toggle { display: inline-flex; }
}
#mobileMenu { display: none; flex-direction: column; border-bottom: 1px solid var(--hairline); background: var(--paper); }
#mobileMenu.open { display: flex; }
#mobileMenu a { padding: 16px 32px; border-top: 1px solid var(--hairline); font-size: 0.95rem; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 0; text-align: center; }
.hero-frame {
  max-width: 460px; margin: 0 auto 40px; aspect-ratio: 4/5; overflow: hidden;
  background: var(--paper-alt);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.98; margin: 0 0 6px; letter-spacing: -0.01em;
}
.hero .role {
  font-family: var(--serif); font-style: italic; color: var(--muted);
  font-size: 1.3rem; margin: 0 0 30px;
}
.hero-ctas { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; padding-bottom: 90px; }

/* ---------- Section shell ---------- */
section { padding: 90px 0; border-bottom: 1px solid var(--hairline); }
section:last-of-type { border-bottom: none; }
.kicker {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.72rem; color: var(--muted); margin: 0 0 18px;
}
h2.section-title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0 0 40px; max-width: 22ch;
}
@media (max-width: 640px) { section { padding: 64px 0; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.4fr; gap: 64px; align-items: start; }
.about-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--paper-alt); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p.lede {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic; font-weight: 500;
  max-width: 20ch; margin: 0 0 26px;
}
.about-copy p { font-size: 1.02rem; color: var(--muted); max-width: 58ch; margin: 0 0 18px; }
.about-copy p strong { color: var(--ink); font-weight: 500; }
.fact-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--hairline); }
.fact-row div span { display: block; }
.fact-row div span:first-child { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 5px; }
.fact-row div span:last-child { font-family: var(--serif); font-size: 1.15rem; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Watch / Roles ---------- */
.role-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.role-card .frame { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-alt); margin-bottom: 14px; }
.role-card .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.role-card .frame:hover img { transform: scale(1.035); }
.role-card .role-name { font-family: var(--serif); font-size: 1.15rem; font-style: italic; margin: 0 0 3px; }
.role-card .role-meta { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 780px) { .role-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .role-list { grid-template-columns: 1fr; } }

/* ---------- Look / gallery ---------- */
.look-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.look-grid .frame { overflow: hidden; background: var(--paper-alt); aspect-ratio: 3/4; }
.look-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .look-grid { grid-template-columns: 1fr; } }

/* ---------- Credits ---------- */
.credits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; }
.credit-col h4 {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.15rem;
  margin: 0 0 16px; color: var(--ink);
}
.credit-item { padding: 13px 0; border-top: 1px solid var(--hairline); }
.credit-item:last-child { border-bottom: 1px solid var(--hairline); }
.credit-item .role { font-weight: 500; font-size: 0.95rem; }
.credit-item .meta { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
@media (max-width: 780px) { .credits-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Contact ---------- */
.contact-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.contact-inner .kicker { text-align: center; }
.contact-inner h2.section-title { margin: 0 auto 26px; }
.contact-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 30px 0 40px; }
.contact-detail { color: var(--muted); font-size: 0.95rem; margin: 6px 0; }
.contact-detail a:hover { color: var(--ink); }

footer {
  padding: 30px 0; padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
footer p { margin: 0; font-size: 0.78rem; color: var(--muted); }
footer a { font-size: 0.78rem; color: var(--muted); }
footer a:hover { color: var(--ink); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; background: rgba(20,18,14,.94); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
#lightbox button {
  position: absolute; top: 24px; right: 28px; background: none; border: none;
  color: #FAF7F2; font-size: 1.8rem; cursor: pointer; line-height: 1;
}
