:root {
    --ptt-background: #000;
    --ptt-surface: #111;
    --ptt-text: #fff;
    --ptt-muted: #aaa;
    --ptt-accent: #f7d36e;
}

body {
    background: var(--ptt-background);
    color: var(--ptt-text);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Reset block spacing for main content stack */
.page-section {
    --wp--style--block-gap: 0px;
}

.page-section > * {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-block-start: 0;
    padding-block-end: 0;
}

.page-section > :where(.wp-block-cover.alignfull, .wp-block-group.alignfull, .wp-block-columns.alignfull) {
    margin: 0 !important;
    padding: 0 !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--ptt-accent);
    outline-offset: 2px;
}

/* Header */
.custom-header {
    background: var(--ptt-background);
    color: var(--ptt-text);
}

.custom-header .wp-block-group__inner-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.custom-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.custom-header-left,
.custom-header-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.custom-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    text-align: center;
}

.custom-header-title {
    margin: 0;
    color: var(--ptt-text);
    font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.custom-header-title a {
    color: var(--ptt-text);
    text-decoration: none;
    text-transform: capitalize;
}

@media (min-width: 769px) {
    .custom-header-title {
        font-size: 36px;
    }
}

.custom-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custom-header-right .wp-block-navigation__responsive-container {
    width: auto;
}

.custom-header-right .wp-block-navigation__container {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.custom-header-right {
    margin-left: auto;
}

.custom-header-right .wp-block-navigation-item {
    margin: 0;
}

.custom-header-right a {
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .custom-header-right a {
        font-size: 20px;
        font-weight: 800;
    }

    .custom-header-right .wp-block-navigation__container {
        gap: 40px;
    }

    .custom-header {
        min-height: 200px;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .custom-header-right {
        flex: 0 0 auto;
        justify-content: flex-end;
    }

    .custom-header .wp-block-group__inner-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .custom-header-inner {
        width: 100%;
        align-items: center;
        padding: 0 64px;
    }

    .custom-header .custom-header-separator {
        position: absolute;
        left: 42px;
        right: 42px;
        bottom: 0;
        width: calc(100% - 84px) !important;
        max-width: none !important;
        margin: 0 auto;
        height: 3px !important;
    }
}

@media (min-width: 769px) {
    .custom-header-separator,
    .custom-header .custom-header-separator.wp-block-separator {
        height: 3px !important;
    }
}

.custom-header-right a:hover {
    color: var(--ptt-accent);
}

.custom-header-right .wp-block-navigation-item--current-menu-item .wp-block-navigation-item__content,
.custom-header-right .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
    color: var(--ptt-accent);
    text-decoration: none;
}

.custom-header-separator,
.custom-header .custom-header-separator.wp-block-separator {
    height: 2px !important;
    border: none !important;
    background-color: var(--ptt-accent) !important;
    opacity: 1 !important;
}

.custom-header__menu-toggle {
    display: none;
}

.custom-header__menu-icon {
    color: var(--ptt-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-header__menu-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.menu a:hover,
.custom-header .wp-block-navigation a:hover {
    color: var(--ptt-accent);
}

.hero {
    text-align: center;
    padding: 8rem 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
}

.gallery {
    padding: 4rem 2rem;
}

.ptt-gallery-showcase {
    margin: 0 0 30px !important;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.grid img {
    width: 100%;
    border-radius: 0.5rem;
}

.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.custom-footer {
    background: var(--ptt-surface);
    color: var(--ptt-muted);
    padding: 2rem 0;
}

.ptt-footer {
    background: linear-gradient(115deg, #000 0%, #0f1b12 55%, #000 100%);
    color: #fff;
    padding: 64px 16px 88px;
}

.ptt-footer__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ptt-footer hr.ptt-footer__divider,
.wp-block-separator.ptt-footer__divider {
    width: calc(100% - 84px) !important;
    max-width: none !important;
    margin: 0 auto !important;
    border: 0;
    height: 2px;
    background: #fff;
    opacity: 1;
    border-radius: 4px;
}

.ptt-footer__heading {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
}

.ptt-footer__social-links .wp-social-link {
    background: transparent;
    color: #fff;
    opacity: 0.7;
    transition: opacity 160ms ease;
}

.ptt-footer__social-links .wp-social-link a {
    color: inherit;
}

.ptt-footer__social-links .wp-social-link:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .ptt-footer {
        padding: 48px 12px 64px;
    }

    .ptt-footer hr.ptt-footer__divider,
    .wp-block-separator.ptt-footer__divider {
        width: calc(100% - 84px) !important;
        margin: 0 auto !important;
    }

    .ptt-footer__heading {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation layout */
    .custom-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0;
        padding-bottom: 20px;
        min-height: 195px;
    }

    .custom-header-inner {
        display: contents;
        gap: 1rem;
    }

    .custom-header-left,
    .custom-header-center,
    .custom-header-right {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .custom-header .custom-header-center .custom-header-title {
        font-size: 20px;
        line-height: 1.21;
        font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        margin: 25px 0;
    }

    .custom-header-left {
        order: 1;
    }

    .custom-header-center {
        order: 2;
    }

    .custom-header .custom-header-separator {
        order: 3;
        width: calc(100% - 66px) !important;
        max-width: calc(100% - 66px) !important;
        margin: 0 auto !important;
        border-radius: 2px;
    }

    .custom-header__menu-toggle {
        order: 4;
        margin: 0.5rem auto 0;
        padding: 0.25rem;
        border: none;
        background: transparent;
        color: var(--ptt-accent);
        font-size: 1.75rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .custom-header-right {
        order: 5;
        margin-left: 0;
        width: 100%;
    }

    .custom-header__menu-toggle:focus-visible {
        outline: 2px solid var(--ptt-accent);
        outline-offset: 4px;
    }

    .custom-header__menu-icon {
        display: inline-block;
        transition: transform 0.25s ease;
        transform-origin: center;
    }

    .custom-header--menu-open .custom-header__menu-icon {
        transform: rotate(180deg);
    }

    .custom-header--mobile-ready .wp-block-navigation__responsive-container-open,
    .custom-header--mobile-ready .wp-block-navigation__responsive-container-close {
        display: none;
    }

    .custom-header--mobile-ready .wp-block-navigation__responsive-container,
    .custom-header--mobile-ready .wp-block-navigation__responsive-close,
    .custom-header--mobile-ready .wp-block-navigation__responsive-dialog,
    .custom-header--mobile-ready .wp-block-navigation__responsive-container-content {
        width: 100%;
        background: transparent;
        padding: 0;
        border: 0;
    }

    .custom-header--mobile-ready .wp-block-navigation__responsive-container {
        position: static;
        flex-direction: column;
        align-items: center;
    }

    .custom-header.custom-header--menu-open .wp-block-navigation__responsive-container {
        display: flex;
    }

    .custom-header.custom-header--menu-open .wp-block-navigation__responsive-container .wp-block-navigation__container,
    .custom-header.custom-header--menu-open .wp-block-navigation__container .wp-block-page-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
    }

    .custom-header.custom-header--menu-open .wp-block-navigation__container li,
    .custom-header.custom-header--menu-open .wp-block-page-list > li {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .custom-header.custom-header--menu-open .wp-block-navigation__container a {
        display: flex;
        width: 100%;
        padding: 0.5rem 0;
        justify-content: center;
        text-align: center;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.6;
        letter-spacing: -0.02em;
    }
}

.opening-banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 520px;
    margin: 0;
}

.wp-block-cover.alignfull + .wp-block-cover.alignfull,
.wp-block-cover.alignfull + .wp-block-group.alignfull {
    margin-top: 0;
}

.opening-banner .wp-block-cover__inner-container {
    width: 100%;
}

.opening-banner.alignfull + .ptt-gallery-showcase.alignfull {
    margin-top: 0;
}

.opening-banner__content {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    padding: 4rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
}

.opening-banner__title {
    margin: 0;
    font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
}

.opening-banner__subtitle {
    margin: 20px 0 0 0;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #f2f2f2;
    max-width: 640px;
}

.opening-banner video.wp-block-cover__video-background {
    filter: saturate(90%);
}

@media (max-width: 1024px) {
    .opening-banner__title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .opening-banner .wp-block-cover__inner-container {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100%;
    }

    .opening-banner__content {
        align-items: flex-start;
        text-align: left;
        padding: 24px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .opening-banner__title {
        font-size: 32px;
        line-height: 1.15;
    }

    .opening-banner__subtitle {
        font-size: 18px;
        line-height: 1.26;
        letter-spacing: -0.02em;
    }

    .opening-banner {
        aspect-ratio: 1 / 1;
        min-height: 100vw;
        width: 100%;
        height: auto;
        padding: 0;
    }
}

.ptt-contacts-section {
    background: #000;
    color: #fff;
    margin: 0;
}

.ptt-contacts-section__intro {
    padding: 0 64px;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.ptt-contacts-section__intro .wp-block-group__inner-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ptt-contacts-section__columns {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center !important;
    gap: 218px;
}

.ptt-contacts-section__columns .ptt-contacts-section__column {
    min-width: 280px;
}

.ptt-contacts-section__columns .ptt-contacts-section__column:first-child {
    flex: 0 1 900px;
    max-width: 900px;
}

.ptt-contacts-section__column--meta {
    flex: 0 1 510px;
    max-width: 510px;
    margin-left: 0;
}

.ptt-contacts-section__lead {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 900px;
    text-align: left;
}

.ptt-contacts-section__label {
    margin: 0 0 16px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}

.ptt-contacts-section__text {
    margin: 0 0 9px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.ptt-contacts-section__divider {
    display: block;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0;
    height: 24px;
    background: #810000;
    opacity: 1;
}

.ptt-contacts-section__divider:not(.is-style-wide):not(.is-style-dots) {
    width: 100% !important;
    max-width: none !important;
}

.ptt-contacts-section + .ptt-contacts-section__image {
    margin-top: 0 !important;
}

.ptt-contacts-section__image {
    min-height: 320px;
    margin: 0 !important;
}

@media (min-width: 769px) {
    .ptt-contacts-section__image {
        min-height: 600px;
    }
}

.ptt-contacts-section__image .wp-block-cover__inner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
}

.ptt-contacts-section__image-title {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 64px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    .ptt-contacts-section__intro {
        padding: 0 28px 50px;
    }

    .ptt-contacts-section__columns {
        flex-direction: column;
        gap: 0;
    }

    .ptt-contacts-section__lead,
    .ptt-contacts-section__label,
    .ptt-contacts-section__text {
        text-align: center;
    }

    .ptt-contacts-section__lead {
        font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        font-weight: 500;
        letter-spacing: -0.02em;
    }


    .ptt-contacts-section__label {
        margin-bottom: 22px;
        margin-top: 28px;
        font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
        font-size: 48px;
        line-height: 1.6;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .ptt-contacts-section__text {
        font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        line-height: 1.14;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .ptt-contacts-section__divider {
        display: none;
    }

    .ptt-contacts-section__image {
        min-height: 220px;
    }

    .ptt-contacts-section__image-title {
        font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
        font-size: 32px;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .ptt-contacts-section__columns {
        gap: 40px;
        flex-wrap: wrap;
    }

    .ptt-contacts-section__columns .ptt-contacts-section__column:first-child {
        flex: 1 1 520px;
        max-width: 520px;
    }

    .ptt-contacts-section__column--meta {
        flex: 1 1 320px;
        max-width: 320px;
    }
}

@media (max-width: 820px) and (min-width: 769px) {
    .ptt-contacts-section__intro {
        min-height: auto;
    }

    .ptt-contacts-section__columns {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 24px;
    }

    .ptt-contacts-section__columns .ptt-contacts-section__column:first-child,
    .ptt-contacts-section__column--meta {
        max-width: 100%;
        flex: 1 1 auto;
    }
}

.ptt-gallery-showcase {
    position: relative;
    padding: 64px 28px 96px;
    background: #000;
    color: #fff;
    overflow: hidden;
    margin: 0;
}

.ptt-gallery-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 85% at 72% 55%, rgba(72, 101, 71, 0.45), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.ptt-gallery-showcase .wp-block-cover__inner-container {
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.ptt-gallery-showcase__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.ptt-gallery-showcase__headline {
    margin: 0;
    font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 1040px;
    margin-inline: auto;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .ptt-gallery-showcase__headline {
        font-size: 20px;
    }
}

.ptt-gallery-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 42px;
    position: relative;
    z-index: 1;
}

.ptt-gallery-card {
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
    background: #0d0d0d;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    padding: 0;
    min-height: 0;
}

.ptt-gallery-card.wp-block-cover {
    display: flex;
    cursor: pointer;
}

@media (min-width: 769px) {
    .ptt-gallery-card::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -24px;
        height: 24px;
        background: #810000;
        transform-origin: bottom;
        transform: scaleY(0);
        transition: transform 0.2s ease, opacity 0.2s ease;
        opacity: 0;
        pointer-events: none;
        z-index: 3;
    }

    .ptt-gallery-card:hover::before {
        transform: scaleY(1);
        opacity: 1;
    }
}

.ptt-gallery-card img,
.ptt-gallery-card video,
.ptt-gallery-card .wp-block-cover__video-background {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.ptt-gallery-card .wp-block-cover__inner-container {
    min-height: 0;
    padding: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    pointer-events: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.ptt-gallery-card .wp-block-cover__background {
    display: none;
}

.ptt-gallery-card .wp-block-cover__inner-container > * {
    margin: 0;
    font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .ptt-gallery-showcase {
        padding: 56px 22px 80px;
    }

    .ptt-gallery-showcase__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .ptt-gallery-showcase {
        padding: 48px 0 64px;
    }

    .ptt-gallery-showcase__inner {
        gap: 42px;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .ptt-gallery-showcase__headline {
        padding-left: 33px;
        padding-right: 33px;
    }

    .ptt-gallery-showcase__grid {
        gap: 22px;
        grid-template-columns: 1fr !important;
    }

    .ptt-gallery-card {
        aspect-ratio: 2 / 1;
        height: auto;
    }
}

.ptt-gallery-showcase__grid > .wp-block-cover {
    width: 100%;
}
