@font-face {
    font-family: 'Gobold';
    src: url('fonts/Gobold Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.quattrocento-sans-regular {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.quattrocento-sans-bold {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.quattrocento-sans-regular-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quattrocento-sans-bold-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}
/*texture
:root {
    --bg: #ffffff;
    --body_bkg: #eceef1;
    --panel: rgba(255,255,255,.0);
    --panel-alt: rgba(255,255,255,.0);
    --footer_bkg: rgba(255,255,255,.0);
    --text: #000;
    --muted: #000;
    --line: rgba(255,255,255,.10);
    --container: 1100px;
    --bar: rgba(255,255,255,.2);
    --barText: rgba(0,0,0,.92);
    --line: rgba(255,255,255,.18);
    --drawerBg: #17162a;
    --drawerText: rgba(255,255,255,.92);
    --drwrlink-clr: rgba(255,255,255,.92);
    --drwrlink-hvr-bkg: rgba(255,255,255,.06);
    --drwrlink-hvr-brdr-clr: rgba(255,255,255,.10);
    --cta: #b90f2a;
    --ctaText: #fff;
    --pb-dis: block;
    --hamlines-bkg: rgba(0,0,0,.92);
}*/
/*white
:root {
    --bg: #ffffff;
    --body_bkg: #eceef1;
    --panel: rgba(255,255,255,.88);
    --panel-alt: rgba(255,255,255,.72);
    --footer_bkg: rgba(255,255,255,.65);
    --text: #000;
    --muted: #000;
    --line: rgba(255,255,255,.10);
    --container: 1100px;
    --bar: rgba(255,255,255,.3);
    --barText: rgba(0,0,0,.92);
    --line: rgba(255,255,255,.18);
    --drawerBg: rgba(255,255,255,1);
    --drawerText: rgba(0,0,0,.92);
    --drwrlink-clr: rgba(0,0,0,.92);
    --drwrlink-hvr-bkg: rgba(0,0,0,.06);
    --drwrlink-hvr-brdr-clr: rgba(0,0,0,.10);
    --cta: #b90f2a;
    --ctaText: #fff;
    --pb-dis: none;
    --hamlines-bkg: rgba(0,0,0,.92);
}*/

/*dark*/
:root {
    --bg: #0e111b;
    --body_bkg: #000;
    --panel: rgba(14,17,27,.88);
    --panel-alt: rgba(14,17,27,.72);
    --footer_bkg: rgba(0,0,0,.65);
    --text: #eef1ff;
    --muted: #b8bfd8;
    --line: rgba(255,255,255,.10);
    --container: 1100px;
    --bar: rgba(3,1,33,.30);
    --barText: rgba(255,255,255,.92);
    --line: rgba(255,255,255,.18);
    --drawerBg: #17162a;
    --drawerText: rgba(255,255,255,.92);
    --drwrlink-clr: rgba(255,255,255,.92);
    --drwrlink-hvr-bkg: rgba(255,255,255,.06);
    --drwrlink-hvr-brdr-clr: rgba(255,255,255,.10);
    --cta: #b90f2a;
    --ctaText: #fff;
    --pb-dis: none;
    --hamlines-bkg: rgba(255,255,255,.92);
}

.header-logo {
    max-height: 45px;
    opacity: 0;
    transition: opacity 1000ms ease;
}

.content-logo {
    max-height: 180px;
    height: 180px;
    margin-bottom: 25px;
}

.content-tagline {
    max-height: 200px;
    width: auto;
    max-width: 80%;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

body {
    font-family: 'Century Gothic', Garamond, "Quattrocento Sans", Gobold, Inter, system-ui, sans-serif;
    background: var(--body_bkg);
    color: var(--text);
    line-height: 1.55;
}

.page-backdrop {
    display: var(--pb-dis);
    width: 100vw;
    height: 100vh;
    background-image: url("img/i04_rs.png");
    position: fixed;
    z-index: 1;
    background-repeat: repeat;
    opacity: 0.15;
}
/*background-blend-mode: soft-light;*/ /*background-size: cover;*/
/* Layout */
.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.no-scroll {
    overflow: hidden;
}
/* Header / Footer */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bar);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    letter-spacing: .22em;
    font-size: 18px;
    color: var(--barText);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Desktop nav */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--barText);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 600;
    opacity: .95;
}

    .nav-link:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

.nav-link--cta {
    padding: 10px 14px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
}

    .nav-link--cta:hover {
        text-decoration: none;
        border-color: rgba(255,255,255,.6);
    }

/* Hamburger (mobile) */
.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 10px;
}

    .hamburger:focus-visible {
        outline: 2px solid rgba(255,255,255,.75);
        outline-offset: 2px;
    }

.hamburger-lines {
    position: relative;
    width: 26px;
    height: 2px;
    background: var(--hamlines-bkg);
    border-radius: 2px;
}

    .hamburger-lines::before,
    .hamburger-lines::after {
        content: "";
        position: absolute;
        left: 0;
        width: 26px;
        height: 2px;
        background: var(--hamlines-bkg);
        border-radius: 2px;
    }

    .hamburger-lines::before {
        top: -8px;
    }

    .hamburger-lines::after {
        top: 8px;
    }

/* Backdrop */
.backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0,0,0,.48);
    opacity: 0;
    transition: opacity .2s ease;
}

    .backdrop.is-visible {
        opacity: 1;
    }
/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 86vw);
    z-index: 70;
    background: var(--drawerBg);
    color: var(--drawerText);
    border-left: 1px solid rgba(255,255,255,.12);
    transform: translateX(100%);
    transition: transform .2s ease;
    display: flex;
    flex-direction: column;
}

    .drawer.is-open {
        transform: translateX(0);
    }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.drawer-brand {
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .9;
}

.drawer-close {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,.92);
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

    .drawer-close:focus-visible {
        outline: 2px solid rgba(255,255,255,.75);
        outline-offset: 2px;
    }

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 18px;
}

.drawer-link {
    padding: 14px 12px;
    margin: 4px 6px;
    border-radius: 12px;
    color: var(--drwrlink-clr);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 650;
    border: 1px solid transparent;
}

    .drawer-link:hover {
        background: var(--drwrlink-hvr-bkg);
        border-color: var(--drwrlink-hvr-brdr-clr);
    }

.drawer-link--cta {
    margin-top: 10px;
    background: var(--cta);
    border-color: rgba(255,255,255,.0);
    color: var(--ctaText);
    text-align: center;
    letter-spacing: .10em;
}

    .drawer-link--cta:hover {
        background: #d11534;
    }

.page {
    min-height: 100vh;
}

.hero {
    padding: 60px 0 20px;
    background: radial-gradient(900px 450px at 20% 20%, rgba(255,255,255,.14), transparent 60%);
}

@media (min-width: 900px) {
    .nav-desktop {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .drawer {
        display: none;
    }

    .backdrop {
        display: none !important;
    }
}



.site-footer {
    background: var(--footer_bkg);
    /*border-bottom: 1px solid var(--line);*/
    position: relative;
    z-index: 3;
}

.site-footer {
    /*border-top: 1px solid var(--line);*/
}

    .site-header .container,
    .site-footer .container {
        padding: 16px 0;
    }

/* Content bands */
.band {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    background: var(--panel);
    /*backdrop-filter: blur(6px);
    border-top: 1px solid var(--line);*/
}

.container.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.band--alt {
    background: var(--panel-alt);
}

/* Typography */
h1, h2 {
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem,4vw,3.2rem);
}

h2 {
    font-size: clamp(1.6rem,2.4vw,2.1rem);
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 60ch;
}

/* PARALLAX SECTION */
.parallax {
    isolation: isolate;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: start;
    z-index: 1;
    overflow: hidden; /* mask */
}

/* Layer stack (Option B) */
.parallax-layer {
    position: absolute;
    inset: -12%; /* overscan so X/Y motion doesn't reveal edges */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) scale(1.06);
    will-change: transform;
    z-index: 0;
    pointer-events: none;
}

/* Base layer (the photo / main image) */
.layer-base {
    /*filter: saturate(1.05) contrast(1.05);*/
}

.port-band > .layer-base {
    background-image: url("img/image852-9_rs_cr.png");
    scale: 0.8;
}

.home-top-band > .layer-base {
    background-image: url("img/att995b_rs.png");
    scale: 0.8;
    width: unset;
}

.p1 > .layer-base {
    background-image: url("img/pol-20b.jpg");
}

.p2 > .layer-base {
    /* background-image: url("img/image852-9_rs_cr.png"); pol_162_gr_tr_rs.png");*/
    background-image: url("img/attendees.png"); /*pol_162_gr_tr_rs.png");*/
    background-size: cover;
    /*background-repeat: repeat;*/
    scale: 1;
    /*filter: saturate(1.05) contrast(1.05) blur(0px);*/
    top: -300px;
}

.p2 > .layer-base2x {
    background-image: url("img/bkg_spots_4.png");
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 1;
    scale: 1;
    filter: saturate(1.05) contrast(1.05) blur(2px);
}

.p3 > .layer-base {
    background-image: url("img/image954.png");
}
/* Color grade / tint layer (pure CSS, no assets needed) */

.layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: screen; /* try: overlay | soft-light | multiply */
    opacity: 0.85;
}

.p1 > .layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: screen; /* try: overlay | soft-light | multiply */
    opacity: 0.85;
}

.p2 > .layer-tintx {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: overlay | soft-light | multiply; /* screen; */
    opacity: 0.45;
}

.layer-noise {
    mix-blend-mode: overlay;
    filter: contrast(1.2);
}

.p1 > .layer-noisex {
    background-image: url("img/hexellence.png"); /* add your own texture here */
    background-size: 20% 20%;
    background-repeat: repeat;
    mix-blend-mode: overlay;
    opacity: 1;
}

.p2 > .layer-noisex {
    background-image: url("img/hexellence.png"); /* add your own texture here */
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    filter: contrast(1) brightness(100%) blur(3px);
    /*rotate: 40deg;*/
}

.p3 > .layer-noisex {
    background-image: url("img/tileable-wood.png"); /* add your own texture here */
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: difference;
    opacity: 0.72;
    filter: contrast(6) brightness(200%);
}

/* Fog / haze (pure CSS) */
.layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.7;
    filter: blur(2px);
}

.p1 > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.7;
    filter: blur(2px);
}

.p2 > .layer-fogx {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    background-repeat: repeat;
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}

.p3 > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.7;
    filter: blur(2px);
}
/* Abstract overlay linear-gradient( to bottom, rgba(14,17,27,0.95), rgba(14,17,27,0.45), rgba(14,17,27,0.95) ),*/
.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.p1.parallax::before {
    background: none;
}

.p2x.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 40% 30%;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

.p3x.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 20% 20%;
    background-position: center center;
}
/* Dark overlay for contrast 
    .parallax::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(14,17,27,1.0), rgba(14,17,27,.40), rgba(14,17,27,1.0) );
        z-index: 1;
    }*/
/*
    .parallax > * {
        position: relative;
        z-index: 2;
    }*/
/* Text layer (scrolls normally) */
.parallax-content {
    position: relative;
    z-index: 2;
    padding: 0px 0;
    display: flex;
}

    .parallax-content.container {
        margin: auto;
    }

.pc-sub-cont {
}

.band-content-container {
    width: 100%;
    margin: 0 8%;
}

.band-content {
    font-family: 'Century Gothic', Garamond, "Quattrocento Sans", 'Segoe UI';
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 385px;
}

.thin-content {
    max-width: 385px;
}
/*.spot {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 50%;
        top: 100px;
    }*/

/* Responsive */
@media (max-width:900px) {
    .band {
        padding: 64px 0;
    }

    .parallax {
        min-height: 450px;
    }

    .parallax-content {
        padding: 0px 0;
    }

        .parallax-content.container {
            margin: 0 auto;
        }

    .content-logo {
        height: auto;
    }

    .home-top-band > .layer-base {
        background-image: url("img/att996b_rs.png");
        scale: 1;
        width: 1920px;
    }

    .band-content-container {
        margin: 0;
    }

    .band-content {
        margin: 0 auto;
    }
}

/* 3-up grid 
.three-up {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}*/
.three-up {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
}

.tile {
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px 18px 16px;
    /*backdrop-filter: blur(6px);*/
    min-height: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.tile-title {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    min-height: 60px;
    text-transform: uppercase;
    font-size: 1.4em;
}

.tile-text-subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
}

.tile-text {
    font-family: 'Century Gothic', Garamond, "Quattrocento Sans", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: var(--muted);
    max-width: 60ch;
}

.tile-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--barText);
    text-decoration: none;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    width: fit-content;
}

.tile-href {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--barText);
    text-decoration: none;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    /*padding: 10px 12px;*/
    border-radius: 999px;
    /*border: 1px solid rgba(255,255,255,.22);*/
    width: fit-content;
    align-self: end;
}

.tile-link:hover {
    border-color: rgba(255,255,255,.45);
    text-decoration: none;
}

.tile-img {
    width: 100%;
    border-radius: 10px;
}

.tile-imgtext-cont {
    display: inherit;
    flex-direction: inherit;
    align-items: center;
    min-height: 120px;
}

.tile-img-cont {
    display: flex;
    justify-content: inherit;
    position: relative;
    margin: auto 0;
    padding: 20px 0;
}

.tile-link-cont {
    display: flex;
    align-items: inherit;
}

.contact-logo {
    width: 35px;
    height: 35px;
}
/* Responsive collapse */
@media (max-width: 900px) {
    .three-up {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 60px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .three-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
