html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    line-height: 1.6;
}

img {
    border: 0;
}

a {
    color: inherit;
}


/* ============================================================
   HEADER & NAV
   ============================================================ */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

#main-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    height: 60px;
    position: relative;
}

#nav-logo {
    position: absolute;
    top: 50%;
    left: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

#nav-list {
    list-style: none;
    position: absolute;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#nav-list li {
    display: inline-block;
    margin-left: 36px;
}

#nav-list li a {
    text-decoration: none;
    color: #111111;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#nav-list li a:hover {
    color: #888888;
}

#nav-toggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 0;
}

#nav-toggle svg path {
    fill: #111111;
}


/* ============================================================
   HERO
   ============================================================ */

#hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('../img/portrait_background.jpg') center top no-repeat;
    background-size: cover;
    background-color: #1a1a1a;
}

#hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

#hero-content {
    position: absolute;
    top: 50%;
    left: 280px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 540px;
}

#hero-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 18px;
}

#hero-content h1 {
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

#hero-tagline {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 36px;
}

#hero-quote {
    margin: 48px 0 80px 0;
}

#hero-quote p {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 12px;
}

#hero-quote cite {
    display: block;
    font-size: 12px;
    color: #bbbbbb;
    letter-spacing: 0.04em;
    font-style: normal;
}

#hero-scroll {
    display: inline-block;
    text-decoration: none;
    opacity: 0.7;
}

#hero-scroll:hover {
    opacity: 1;
}

#hero-scroll svg path {
    fill: #ffffff;
}


/* ============================================================
   SHARED SECTION LAYOUT
   ============================================================ */

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 80px;
}

#now,
#bio {
    background: #ffffff;
}

#works {
    background: #f5f5f5;
}

#now {
    border-bottom: 1px solid #ebebeb;
    scroll-margin-top: 60px;
}

#works {
    border-bottom: 1px solid #e0e0e0;
    scroll-margin-top: 60px;
}

#bio {
    border-bottom: 1px solid #ebebeb;
    scroll-margin-top: 60px;
}

#contact {
    scroll-margin-top: 60px;
    background: #111111;
}

h2 {
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 44px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: normal;
}

h3 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 20px;
    margin-top: 52px;
    font-weight: bold;
}


/* ============================================================
   NOW SHOWING
   ============================================================ */

.showing-list {
    list-style: none;
}

.showing-list li {
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
}

.show-year {
    display: inline-block;
    width: 52px;
    font-size: 12px;
    color: #999999;
    vertical-align: top;
    padding-top: 4px;
}

.show-title {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #111111;
    vertical-align: top;
    margin-right: 20px;
    max-width: 600px;
}

.show-venue {
    display: inline-block;
    font-size: 14px;
    color: #555555;
    vertical-align: top;
    padding-top: 5px;
    margin-right: 16px;
}

.show-type {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999999;
    vertical-align: top;
    padding-top: 7px;
    border: 1px solid #dddddd;
    padding: 3px 8px;
    margin-top: 4px;
}


/* ============================================================
   WORKS GRID
   ============================================================ */

.works-grid {
    font-size: 0;
    margin: 0 -6px;
}

.work-item {
    display: inline-block;
    width: 33.333%;
    vertical-align: top;
    padding: 6px;
    font-size: 14px;
}

.work-item a {
    display: block;
    text-decoration: none;
    color: #111111;
}

.work-item img {
    display: block;
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
}

.work-item a:hover img {
    opacity: 0.88;
}

.work-caption {
    padding: 10px 2px 0;
    font-size: 13px;
    color: #111111;
    line-height: 1.4;
}

.work-caption span {
    display: block;
    font-size: 11px;
    color: #999999;
    margin-top: 2px;
}


/* ============================================================
   BIO & CV
   ============================================================ */

.bio-text {
    max-width: 760px;
}

.bio-text p {
    font-size: 16px;
    color: #111111;
    line-height: 1.85;
    margin-bottom: 22px;
}

.bio-text em {
    font-style: italic;
}

.bio-quote {
    border-left: 3px solid #e0e0e0;
    padding: 12px 24px;
    margin: 36px 0;
}

.bio-quote p {
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 10px;
}

.bio-quote cite {
    display: block;
    font-size: 11px;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
}

.cv-columns {
    font-size: 0;
}

.cv-col {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    font-size: 14px;
    padding-right: 48px;
}

.cv-list {
    list-style: none;
}

.cv-list li {
    padding: 7px 0 7px 44px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #111111;
    line-height: 1.5;
}

.cv-list li span {
    display: inline-block;
    width: 44px;
    margin-left: -44px;
    color: #999999;
    font-size: 12px;
    vertical-align: top;
    padding-top: 1px;
}



/* ============================================================
   CONTACT
   ============================================================ */

.contact-text {
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 560px;
}

.contact-info {
    margin-bottom: 36px;
}

.contact-credits {
    font-size: 16px;
    font-weight: bold;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.contact-name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-address {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-email a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-email a:hover {
    color: #aaaaaa;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #111111;
}

.site-footer h2 {
    border-bottom-color: #2a2a2a;
}

.site-footer .section-inner {
    padding: 40px 80px;
}

.footer-copy {
    font-size: 12px;
    color: #555555;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}


/* ============================================================
   LEGAL PAGE (Imprint & Privacy)
   ============================================================ */

.legal-page main {
    padding-top: 60px;
}

.legal-page #imprint {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.legal-page #privacy {
    background: #f5f5f5;
}

.legal-page #imprint h3:first-of-type,
.legal-page #privacy h3:first-of-type {
    margin-top: 0;
}

.legal-list {
    max-width: 760px;
    margin: 0 0 12px;
}

.legal-list dt {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999999;
    margin-top: 18px;
    margin-bottom: 4px;
    font-weight: bold;
}

.legal-list dt:first-child {
    margin-top: 0;
}

.legal-list dd {
    font-size: 15px;
    color: #111111;
    line-height: 1.7;
    margin: 0 0 6px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-list dd a {
    color: #111111;
    text-decoration: underline;
}

.legal-list dd a:hover {
    color: #888888;
}

.legal-text {
    max-width: 760px;
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text a {
    color: #111111;
    text-decoration: underline;
    word-break: break-word;
}

.legal-text a:hover {
    color: #888888;
}

.legal-contact {
    margin-top: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    max-width: 420px;
}

.legal-contact .contact-name {
    color: #111111;
}

.legal-contact .contact-address {
    color: #444444;
}

.legal-contact .contact-email a {
    color: #111111;
}

.legal-contact .contact-email a:hover {
    color: #888888;
}

.footer-legal {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 32px;
}

.footer-legal a {
    color: #aaaaaa;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 2px;
    display: inline-block;
    margin-right: 20px;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {

    .section-inner {
        padding: 64px 48px;
    }

    #main-nav {
        padding: 0 48px;
    }

    #nav-logo {
        left: 48px;
    }

    #nav-list {
        right: 48px;
    }

    #nav-toggle {
        right: 48px;
    }

    #hero-content {
        left: 48px;
    }

    #hero-content h1 {
        font-size: 64px;
    }

    .work-item {
        width: 50%;
    }

    .cv-col {
        width: 100%;
        padding-right: 0;
    }

    .gallery-list li {
        width: 50%;
    }

    .site-footer .section-inner {
        padding: 60px 48px;
    }

}


/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

    #hero {
        background-position: calc(50% - 180px) top;
    }

    #nav-list {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        -webkit-transform: none;
        transform: none;
        padding: 8px 0 16px;
        z-index: 199;
    }

    #nav-list.open {
        display: block;
    }

    #nav-list li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #f5f5f5;
    }

    #nav-list li a {
        display: block;
        padding: 14px 40px;
        font-size: 13px;
    }

    #nav-toggle {
        display: block;
    }

    .section-inner {
        padding: 48px 24px;
    }

    #main-nav {
        padding: 0 24px;
    }

    #nav-logo {
        left: 24px;
    }

    #nav-toggle {
        right: 24px;
    }

    #hero-content {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    #hero-content h1 {
        font-size: 48px;
    }

    #hero-tagline {
        font-size: 14px;
    }

    .show-title {
        display: block;
        font-size: 17px;
        margin-bottom: 4px;
        margin-right: 0;
    }

    .show-venue {
        display: block;
        margin-right: 0;
        padding-top: 0;
    }

    .show-type {
        margin-top: 8px;
    }

    .work-item {
        width: 100%;
    }

    .work-item img {
        height: 260px;
    }

    .gallery-list li {
        width: 100%;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #ebebeb;
    }

    .cv-list--inline li {
        display: block;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 7px 0;
        margin-right: 0;
    }

    .site-footer .section-inner {
        padding: 48px 24px;
    }

}


/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */

@media (max-width: 480px) {

    #hero-content h1 {
        font-size: 40px;
    }

    /*#hero:before {*/
    /*    width: 100%;*/
    /*    background: rgba(0,0,0,0.45);*/
    /*}*/

    #hero:before {
        width: 90%;
    }

}
