@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --brown: #3b2d2c;
    --brown-deep: #3b2d2c;
    --brown-border: rgba(59, 45, 44, 0.46);
    --cream: #f2e8d8;
    --white: #ffffff;
    --text: #3b2d2c;
    --muted: #74625f;
    --wrapper: 1120px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--text);
    background: var(--cream);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    line-height: 1.35;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wrapper {
    width: min(var(--wrapper), calc(100% - 64px));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden-field {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--white);
    background: var(--brown);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(31, 22, 22, 0.25);
}

.header-row {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo-link {
    flex: 0 0 auto;
}

.site-logo {
    width: 160px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 72px;
}

.main-nav a {
    position: relative;
    padding: 34px 0;
    color: var(--white);
    font-size: 18px;
    transition: opacity var(--transition);
}

.main-nav a:hover {
    opacity: 0.72;
}

.main-nav a.active {
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 38px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 470px;
    color: var(--brown);
    background: var(--cream);
}

.hero-overlay {
    display: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 470px;
    padding: 34px 0 42px;
    display: grid;
    grid-template-columns: 220px minmax(250px, 1fr) minmax(340px, 400px);
    align-items: center;
    gap: 36px;
}

.hero-layout > * {
    min-width: 0;
}

.hero-artist {
    text-align: center;
}

.artist-image-frame {
    aspect-ratio: 1;
    overflow: hidden;
    border: 5px solid var(--brown-border);
    background: var(--cream);
}

.artist-image-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

.hero-artist h1 {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.1;
}

.hero-artist p {
    margin-top: 2px;
    font-size: 17px;
}

.hero-copy {
    max-width: 430px;
}

.hero-copy p {
    max-width: 410px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.16;
}

.hero-copy .hero-kicker {
    margin-bottom: 16px;
    font-size: 21px;
}

.pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 45px;
    padding: 10px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.pill-button:hover {
    transform: translateY(-2px);
}

.pill-button-light {
    color: var(--cream);
    background: var(--brown);
    border-color: var(--brown);
}

.pill-button-light:hover {
    color: var(--brown);
    background: transparent;
}

.pill-button-dark {
    color: var(--white);
    background: var(--brown);
    border-color: var(--brown);
}

.pill-button-dark:hover {
    color: var(--brown);
    background: var(--cream);
}

.hero-showcase {
    min-width: 0;
}

.hero-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 5px solid var(--brown-border);
    background: var(--cream);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.45s ease, transform 5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.slider-dots {
    min-height: 30px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.slider-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 1.5px solid var(--brown);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--brown);
}

.gallery-preview {
    padding: 58px 0 78px;
}

.gallery-preview-wrapper {
    position: relative;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 46px;
}

.gallery-preview-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 5px solid rgba(140, 112, 105, 0.62);
    background: var(--cream);
    transition: transform var(--transition), filter var(--transition);
}

.gallery-preview-grid:hover img {
    filter: brightness(0.96);
}

.gallery-preview-grid img:hover {
    transform: translateY(-4px);
}

.gallery-preview-fade {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(242, 232, 216, 0.05), var(--cream) 92%);
}

.gallery-preview-button {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
}

.gallery-preview-button:hover {
    transform: translateX(-50%) translateY(-2px);
}

.page-title {
    font-size: 34px;
    line-height: 1.1;
    text-transform: none;
}

.gallery-page {
    min-height: 620px;
    padding: 60px 0 34px;
}

.gallery-page .page-title {
    margin-bottom: 42px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 46px;
}

.gallery-item {
    padding: 0;
    border: 5px solid var(--brown-border);
    background: var(--cream);
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease, filter var(--transition);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.045);
    filter: brightness(0.94);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--brown);
    outline-offset: 4px;
}

.lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    padding: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.57);
}

.lightbox.show {
    display: flex;
}

.lightbox-panel {
    position: relative;
    width: min(920px, calc(100vw - 150px));
    max-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    max-height: calc(100vh - 72px);
    object-fit: contain;
    border: 5px solid var(--brown-border);
    background: var(--cream);
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    transform: scale(1.08);
}

.lightbox-close {
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    color: var(--white);
    background: var(--brown);
    font-size: 43px;
    line-height: 1;
}

.lightbox-arrow {
    top: 50%;
    width: 54px;
    height: 54px;
    color: var(--brown);
    background: var(--white);
    font-size: 25px;
}

.lightbox-prev {
    left: -28px;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -28px;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.contact-page {
    min-height: 690px;
    padding: 62px 0 70px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 95px;
}

.contact-form-panel .page-title,
.contact-info-panel h2 {
    margin-bottom: 25px;
    font-size: 34px;
    text-transform: uppercase;
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel textarea {
    width: 100%;
    border: 1.5px solid var(--brown-border);
    border-radius: 0;
    padding: 15px 20px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"] {
    min-height: 56px;
}

.contact-form-panel textarea {
    min-height: 190px;
    resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(59, 46, 46, 0.12);
}

.privacy-check {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

.privacy-check input {
    position: absolute;
    opacity: 0;
}

.privacy-check span {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1.5px solid var(--brown-border);
    border-radius: 50%;
    background: var(--white);
}

.privacy-check input:checked + span {
    box-shadow: inset 0 0 0 7px var(--white);
    background: var(--brown);
}

.privacy-check input:focus-visible + span {
    outline: 3px solid rgba(59, 46, 46, 0.28);
}

.privacy-check strong {
    font-weight: 400;
}

.privacy-check a {
    font-weight: 700;
}

.contact-submit {
    align-self: flex-start;
    margin-top: 8px;
    border: 2px solid var(--brown);
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-panel > a {
    margin-bottom: 18px;
    font-size: 22px;
}

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

.contact-social a {
    transition: transform var(--transition);
}

.contact-social a:hover {
    transform: translateY(-3px);
}

.contact-social img {
    width: 48px;
    height: 48px;
}

.site-footer {
    color: var(--white);
}

.footer-main {
    padding: 56px 0;
    background: var(--brown);
}

.footer-grid {
    display: grid;
    grid-template-columns: 230px 1fr 1fr;
    align-items: center;
    gap: 78px;
}

.footer-brand img {
    width: 112px;
    max-height: 145px;
}

.footer-column h2 {
    margin-bottom: 18px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-column li {
    margin-bottom: 9px;
    font-size: 15px;
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: opacity var(--transition);
}

.footer-column a:hover {
    opacity: 0.72;
}

.social-list img {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    padding: 14px 24px;
    color: var(--brown);
    background: var(--cream);
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.compact-footer {
    padding-block: 42px;
}

.simple-page {
    min-height: 520px;
    padding: 90px 32px;
    display: grid;
    place-items: center;
}

.thank-you-panel {
    max-width: 620px;
    text-align: center;
}

.thank-you-panel h1 {
    margin-bottom: 16px;
    font-size: 42px;
}

.thank-you-panel p {
    margin-bottom: 30px;
    font-size: 19px;
}

.legal-page {
    min-height: 580px;
    padding: 70px 0;
}

.legal-content {
    max-width: 820px;
}

.legal-content h1 {
    margin-bottom: 30px;
    font-size: 38px;
}

.legal-content h2 {
    margin: 32px 0 12px;
    font-size: 23px;
}

.legal-content p {
    margin-bottom: 12px;
    line-height: 1.65;
}

.legal-content a {
    text-decoration: underline;
}

.placeholder-note {
    padding: 18px 20px;
    border-left: 4px solid var(--brown-border);
    background: var(--cream);
    font-weight: 700;
}

@media (max-width: 1040px) {
    .main-nav {
        gap: 46px;
    }

    .hero-layout {
        grid-template-columns: 180px minmax(220px, 1fr) minmax(260px, 320px);
        gap: 28px;
    }

    .gallery-preview-grid,
    .gallery-grid {
        gap: 28px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        gap: 60px;
    }
}

@media (max-width: 820px) {
    .wrapper {
        width: min(100% - 40px, var(--wrapper));
    }

    .header-row {
        min-height: 82px;
    }

    .site-logo {
        width: 145px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav:not(.always-visible) {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 10px 20px 22px;
        flex-direction: column;
        gap: 0;
        background: var(--brown);
        box-shadow: 0 14px 20px rgba(31, 22, 22, 0.2);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav:not(.always-visible) a {
        width: 100%;
        padding: 13px 0;
        text-align: center;
    }

    .main-nav.always-visible {
        gap: 22px;
    }

    .main-nav.always-visible a {
        padding-block: 28px;
        font-size: 14px;
    }

    .hero-layout {
        padding-block: 42px;
        grid-template-columns: 190px 1fr;
        min-height: 0;
    }

    .hero-showcase {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 460px;
        margin-inline: auto;
    }

    .gallery-preview-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 34px;
    }

    .gallery-preview-fade {
        height: 35%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .contact-info-panel {
        padding-top: 12px;
    }

    .footer-grid {
        grid-template-columns: 180px 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        width: min(100% - 32px, var(--wrapper));
    }

    .site-logo {
        width: 132px;
    }

    .main-nav.always-visible {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-artist {
        width: 210px;
        margin-inline: auto;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-copy p {
        margin-inline: auto;
        overflow-wrap: anywhere;
    }

    .hero-showcase {
        grid-column: auto;
    }

    .gallery-preview {
        padding-top: 40px;
    }

    .gallery-preview-grid,
    .gallery-grid {
        gap: 18px;
    }

    .gallery-preview-grid img,
    .gallery-item {
        border-width: 4px;
    }

    .gallery-page {
        padding-top: 42px;
    }

    .gallery-page .page-title {
        margin-bottom: 28px;
    }

    .page-title,
    .contact-form-panel .page-title,
    .contact-info-panel h2 {
        font-size: 29px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox-panel {
        width: calc(100vw - 28px);
    }

    .lightbox-image {
        max-height: calc(100vh - 28px);
    }

    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 42px;
        height: 42px;
        font-size: 36px;
    }

    .lightbox-arrow {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .contact-page {
        padding: 44px 0 56px;
    }

    .contact-form-panel form {
        gap: 18px;
    }

    .contact-info-panel > a {
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .footer-main {
        padding: 42px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-column a {
        justify-content: center;
    }

    .simple-page {
        min-height: 440px;
        padding-inline: 22px;
    }
}
