@charset "UTF-8";

:root {
    --bg: #1c2128;
    --bg-alt: #232933;
    --ink: #f2efe9;
    --muted: rgba(242, 239, 233, 0.65);
    --gold: #c9a24a;
    --navy: #22344f;
    --navy-border: #3a4f70;
    --hairline: rgba(242, 239, 233, 0.12);
    --nav-height: 90px;
    font-family: "Nunito", sans-serif;
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--ink);
}

h1, h2, h3, h4 {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    margin: 0;
}
h1 { font-size: clamp(2.4rem, 1.8rem + 3.5vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 1.5rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem); }

p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
    line-height: 1.65;
    color: var(--ink);
}

a { color: var(--gold); }

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(28, 33, 40, 0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--hairline);
    padding: 1.1rem 0 0.9rem 0;
}
.navbar-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navbar-brand {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.5rem + 1.5vw, 3rem);
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.navbar-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.navbar-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background-color: transparent;
    transition: background-color 0.2s, color 0.2s;
}
.navbar-links a:hover {
    background-color: var(--navy);
}
.navbar-links a.active {
    background-color: var(--gold);
    color: #1c2128;
    font-weight: 700;
}
.nav-icon {
    display: none;
    color: var(--ink);
    font-size: 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 6%;
    top: 1.3rem;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--hairline);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--hairline);
}
.mobile-menu a.active { color: var(--gold); }

@media screen and (max-width: 700px) {
    .navbar-links { display: none; }
    .nav-icon { display: block; }
}

.cover-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 0;
    font-size: 1rem;
}

.hero {
    padding: 3.5rem 0 3rem 0;
    text-align: center;
}
/* .hero .container { max-width: 760px; } */
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}
.hero-rule {
    width: 64px;
    height: 3px;
    background-color: var(--gold);
    margin: 1.5rem auto;
    border: none;
    border-radius: 999px;
}
.hero p { color: var(--muted); }
.btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.75rem;
}

.page-header {
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--hairline);
}
.page-header p {
    max-width: 640px;
    margin: 0.75rem auto 0 auto;
    color: var(--muted);
}

.section { padding: 4rem 0; }
.section.alt { background-color: var(--bg-alt); }
.section-heading { text-align: center; margin-bottom: 0.5rem; }
.section-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    background-color: var(--gold);
    color: #1c2128;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-outline {
    background: var(--navy);
    color: var(--ink);
    border: 1px solid var(--navy-border);
}
.btn-outline:hover {
    background: var(--navy-border);
    opacity: 1;
    transform: translateY(-2px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}
@media screen and (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
    .grid { grid-template-columns: 1fr; }
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}
@media screen and (max-width: 700px) {
    .role-grid { grid-template-columns: 1fr; }
}
.role-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background-color: var(--bg-alt);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.role-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.role-card h3 { margin-bottom: 0.5rem; }
.role-card p { color: var(--muted); margin: 0; }

.card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background-color: var(--bg-alt);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s, border-color 0.2s;
    width: 100%;
    max-width: 300px;
    margin: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: column;
}
.card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
    border-radius: 10px;
}
.card:hover { transform: translateY(-3px); border-color: var(--gold); }
.card h3, .card h4 { color: var(--ink); margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; }

.full-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s, border-color 0.2s;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: column;
}
.full-card:hover {
    transform: translateY(-4px);
}
.full-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}
.full-card-video {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
    object-fit: cover;
}
.full-card-body {
    padding: 0rem 1.5rem 1.5rem;
    text-align: center;
}

.wide-card-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.wide-card {
    display: flex;
    background-color: var(--bg-alt);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.2s, transform 0.2s;
}
/* .wide-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
} */
.wide-card-img {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.wide-card-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wide-card-body h3 { margin-bottom: 0.4rem; }
.wide-card-body p { color: var(--muted); margin: 0; }
.wide-card-meta {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    display: block;
}

@media screen and (max-width: 650px) {
    .wide-card { flex-direction: column; }
    .wide-card-img { width: 100%; aspect-ratio: 16 / 9; }
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: repeating-linear-gradient(
        135deg,
        rgba(201, 162, 74, 0.08),
        rgba(201, 162, 74, 0.08) 10px,
        rgba(201, 162, 74, 0.03) 10px,
        rgba(201, 162, 74, 0.03) 20px
    );
    border: 1px dashed rgba(201, 162, 74, 0.4);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem;
}

.show-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: left;
}
/* .show-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
} */
.show-role-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1c2128;
    background-color: var(--gold);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.9rem;
}
.show-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}
.show-card-split {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
    align-items: flex-start;
}
.show-card-text { flex: 1 1 320px; min-width: 0; }
.show-card-slideshow { flex: 1 1 320px; min-width: 0; align-self: center;}

.show-card-slideshow .slideshow-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.show-card-slideshow .slideshow-main-img {
    width: 100%;
    max-height: 20rem;
    object-fit: contain;
    display: block;
    cursor: pointer;
}
#pdfFrame {
    background: white;
}
@media screen and (max-width: 560px) {
    .show-card-split { flex-direction: column; }
}
.slide-arrow {
    position: absolute;
    top: 50%;
    color: white;
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0;
    border-radius: 999px;
    z-index: 2;
    cursor: pointer;
    user-select: none;
}
.slide-arrow:hover { color: var(--gold); }
.slide-prev { left: 1em; }
.slide-next { right: 1em; }

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 1rem;
    opacity: 0.7;
    z-index: 201;
}
.modal-arrow:hover { opacity: 1; }
.modal-prev { left: 20px; }
.modal-next { right: 20px; }

.cv-carousel {
    position: relative;
    padding: 1rem 3.5rem;
}
.cv-track {
    position: relative;
    height: 280px;
}
.cv-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(420px, 60vw);
    will-change: transform, opacity;
    text-align: center;
    transition: transform 0.45s ease, opacity 0.45s ease;
}
.cv-video {
    position: relative;
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.cv-thumb, .cv-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    object-fit: cover;
}
.cv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cv-play:hover { background: rgba(0, 0, 0, 0.75); }

.cv-caption {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.cv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink);
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    user-select: none;
    padding: 0;
    line-height: 1;
    z-index: 5;
    transition: color 0.2s;
}
.cv-arrow:hover { color: var(--gold); }
.cv-prev-btn { left: 0; }
.cv-next-btn { right: 0; }

.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}
.two-col > * {
    flex: 1 1 320px;
}
@media screen and (max-width: 900px) {
    .two-col { justify-content: center; align-items: center; text-align: center;}
}
@media screen and (max-width: 560px) {
    .two-col { justify-content: center; align-items: center; text-align: center;}
}

.resume-embed {
    width: 100%;
    height: 80vh;
    border: 1px solid var(--hairline);
    border-radius: 10px;
    background: white;
}
.resume-block { text-align: center; }
.resume-block h3 { margin-bottom: 1rem; }

.theatre-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto;
}
.theatre-form input,
.theatre-form textarea {
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--hairline);
    background: var(--bg-alt);
    color: var(--ink);
    font-family: "Nunito", sans-serif;
}
.theatre-form ::placeholder { color: rgba(242, 239, 233, 0.4); }

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(10, 12, 15, 0.96);
}
.modal-content { margin: auto; display: block; height: 90%; max-height: 90vh; width: 100%; max-width: 80vw; object-fit: contain; }
#caption {
    margin: auto; display: block; width: 80%; max-width: 700px;
    text-align: center; color: var(--ink); padding: 10px 0;
}
.close {
    position: absolute; top: 15px; right: 35px;
    color: var(--ink); font-size: 40px; font-weight: bold; cursor: pointer;
}
.close:hover { color: var(--gold); }

.site-footer {
    border-top: 1px solid var(--hairline);
    padding: 2.5rem 0 3.5rem 0;
    font-size: 0.9rem;
    color: var(--muted);
    position: relative;
}
.site-footer .container {
    text-align: center;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.footer-icons {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    font-size: 1.25rem;
}
.footer-icons a:hover { color: var(--gold); }

.all-portfolios-link {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: rgba(242, 239, 233, 0.4);
    text-decoration: none;
    margin-top: 1.5rem;
}
.all-portfolios-link:hover { color: var(--muted); }