:root {
    --ink: #211E1B;
    --ink-2: #2A2622;
    --paper: #F4F2EC;
    --paper-2: #ECE9E1;
    --silver: #B9BCBA;
    --silver-lo: #8C8F8C;
    --silver-hi: #DCDED9;
    --text: #2B2825;
    --text-dim: #6B665F;
    --line-lt: rgba(33, 30, 27, .14);
    --line-dk: rgba(255, 255, 255, .13);
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
    --maxw: 1160px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.section,
.news-bottom-section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 40px;
}

@media(max-width:640px) {
    .section,
    .news-bottom-section {
        padding: 0 24px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: ease .35s;
}

.btn {
    width: fit-content;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 15px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background .3s, color .3s;
}

.btn p {
    margin: 0;
}

.btn p svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
}

.btn:hover {
    background: var(--ink-2);
    color: #fff;
}

.img-responsive {
    max-width: 100%;
    objet-fit: cover;
}

/*-- NAV --*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

#header:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity .45s ease, transform .45s ease;
}

#header.solid::before {
    opacity: 1;
    transform: translateY(0);
}

#header >.container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    margin: 0 auto;
    padding: 0 40px;
    max-width: var(--maxw);
}

.navbar-header img {
    height: 70px;
    width: auto;
    display: block;
}

#navbar ul {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    gap: 42px;
    list-style: none;
    align-items: center;
}

#navbar a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--silver-hi);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color .3s;
}

#navbar a:hover {
    color: #fff;
}

#navbar li.active a {
    color: #fff;
}

#navbar li.active a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--silver);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
}

@media(max-width:780px) {
    #navbar ul {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--ink);
        padding: 6px 0;
    }

    #navbar ul.open {
        display: flex;
    }

    #navbar ul.open a {
        display: block;
        padding: 16px 40px;
    }

    .nav-toggle {
        display: block;
    }
}

/*-- sub BANNER --*/

.banner {
    position: relative;
    height: 74vh;
    min-height: 480px;
    max-height: 760px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center 58%;
    background-size: cover;
}

.banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 30, 27, .42) 0%, rgba(33, 30, 27, .06) 32%, rgba(33, 30, 27, .20) 66%, rgba(33, 30, 27, .72) 100%);
}

.banner .section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 62px;
}

.banner .title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.banner .title:before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, .6);
}

.banner h1 {
    font-family: var(--serif);
    font-weight: 400;
    color: #fff;
    font-size: clamp(46px, 9vw, 104px);
    line-height: .96;
    letter-spacing: -.012em;
}

.full-banner {
    position: relative;
    min-height: 58vh;
    height: auto;
    display: flex;
    align-items: flex-end;
    /*background: var(--ink);*/
    background-position: center 58%;
    background-size: cover;
}

.banner.home {
    max-height: none !important;
}

.full-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(20, 18, 16, .22) 0%, rgba(20, 18, 16, .5) 55%, rgba(20, 18, 16, .82) 100%);
}

.full-banner h1 {
    font-family: var(--serif);
    font-weight: 400;
    color: #fff;
    font-size: clamp(46px, 8vw, 92px);
    line-height: .98;
    letter-spacing: -.015em;
}

.full-banner h1 em {
    font-style: italic;
    color: var(--silver-hi);
}

.full-banner .section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 150px 40px 64px;
}

.full-banner .sub {
    margin-top: 20px;
    max-width: 54ch;
    color: var(--silver-hi);
    font-size: 17px;
    font-weight: 300;
    opacity: .9;
}

.blog-banner {
    height: auto;
    background: var(--ink);
    color: var(--silver-hi);
}

.blog-banner .section {
    padding: 60px 40px 70px;
}

.blog-banner img {
    display: block;
    width: 248px;
    height: auto;
    margin: 2px 0 0;
}

.blog-banner .lead,
.news .lead {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--silver-lo);
    margin: 30px 0 14px;
}

.blog-banner .lead:before,
.news .lead:before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 1.5px;
    background: var(--silver);
    /*margin-right: 10px;*/
}

.blog-banner h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 54px;
    line-height: 1.1;
    color: var(--silver-hi);
    /*max-width: 900px;*/
    letter-spacing: .002em;
}

.blog-banner h2 em {
    color: var(--silver);
}


/*-- SECTION --*/

.section-title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--silver-lo);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.section-title:before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--silver-lo);
}

.h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.003em;
}


.h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--text-dim);
}

.text-center {
    text-align: center;
}

/*-- intro --*/

.intro {
    display: flex;
    gap: 64px;
    align-items: start;
}

.intro .title {
    flex: 0 0 40%;
}

.intro .body p {
    font-size: 16px;
    margin-bottom: 22px;
    color: var(--text);
}

.intro .body p:first-child {
    color: var(--ink);
    font-weight: 400;
}

.note {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    margin-top: 8px;
    padding-top: 30px;
    border-top: 1px solid var(--line-lt);
}

.note b {
    font-style: normal;
    font-weight: 500;
}

@media(max-width: 768px) {
    .intro {
        gap: 28px;
        flex-wrap: wrap;
    }
    
    .intro .title {
        flex: 0 0 100%;
    }
}



/* Dark Section */

.dark {
    background: var(--ink);
    color: var(--paper);
}

.dark .section {
    max-width: 920px;
}

.dark .section-title {
    color: var(--silver-lo);
}

.dark .section-title:before {
    background: var(--silver-lo);
}

.dark .h2 {
    color: #fff;
    margin-bottom: 34px;
}

.dark .h2 em {
    color: var(--silver);
}

.dark p {
    font-size: clamp(18px, 1.9vw, 23px);
    font-weight: 300;
    line-height: 1.55;
    max-width: 650px;
    color: var(--silver-hi);
}

.dark .checks li {
    color: var(--silver-hi);
    border-bottom-color: var(--line-dk);
}



/* TILE GRID (process / services) */

.tile-head {
    margin-bottom: 46px;
}

.tile-area {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    background: var(--line-lt);
    border: 1px solid var(--line-lt);
}

.tile {
    flex: 0 0 calc(25% - 0.8px);
    background: var(--paper);
    padding: 42px 38px;
    min-height: 248px;
    display: flex;
    flex-direction: column;
    transition: background .45s ease;
}

.process .tile {
    flex: 0 0 calc(100% / 3 - 0.7px);
}

.tile.wide {
    flex: 0 0 calc(100% / 3 * 2 - 0.7px);
}

@media(max-width: 990px) {
    .tile-area {
        flex-wrap: wrap;    
    }
    
    .tile,
    .process .tile,
    .tile.wide {
        flex: 0 0 calc(50% - 0.5px);
    }
}

@media(max-width: 576px) {
    .tile,
    .process .tile,
    .tile.wide {
        flex: 0 0 100%;
    }
}

.tile:hover {
    background: #EFEDE6;
}

.tile .icon > p {
    color: var(--silver-lo);
}

.tile .icon {
    width: 34px;
    height: 34px;
    color: var(--silver-lo);
    margin-bottom: 0;
}

.tile .icon svg {
    width: 34px;
    height: 34px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.3;
}

.tile .num {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--silver-lo);
    line-height: 1;
    margin-bottom: 0;
}

.tile .type {
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin: 26px 0 10px;
}

.tile h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.16;
    margin-bottom: 12px;
}

.home-tile h3 {
    padding-top: 40px;
}

.tile p {
    font-size: 16px;
    color: var(--text-dim);
}

.tile-area > .tile.lead {
    justify-content: center;
    background: var(--paper);
}

.tile-area > .tile.lead .section-title {
    margin-bottom: 22px;
}

.tile-area > .tile.lead h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
}

.tile-area > .tile.lead h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--text-dim);
}

@media(max-width: 576px) {
    .tile {
        min-height: 0;
    }
}


/* helper checklist (about) */

.checks {
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 0;
    border-top: 1px solid var(--line-lt);
}

.checks li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 8px;
    border-bottom: 1px solid var(--line-lt);
    font-size: 16.5px;
    color: var(--text);
}

.checks li span.num {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--silver-lo);
    min-width: 26px;
}



/*-- TEAM --*/

.team {
    background: var(--paper);
    padding: 0 0 120px;
}

.team-area {
    position: relative
}

.team-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 330px;
    background: var(--ink);
    z-index: 0;
}

.team-head {
    position: relative;
    z-index: 2;
    padding-top: 4px;
    margin-bottom: 40px
}

.team-head .section-title {
    color: var(--silver-lo)
}

.team-head .section-title::before {
    background: var(--silver-lo)
}

.team-head h2 {
    color: #fff
}

.team-list {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 26px;
}

.member {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
}

@media(max-width: 990px) {
    .team-list {
        flex-wrap: wrap;
    }
    
    .member {
        width: calc(100% / 2 - 26px);
        flex-wrap: wrap;
    }
}

@media(max-width: 576px) {
    .member {
        width: 100%;
        flex-wrap: wrap;
    }
}

.member .photo {
    position: relative;
    overflow: hidden;
    background: var(--paper-2)
}

.member .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.96)
}

.short-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 2px 0;
    border-top: 1px solid var(--line-lt);
    margin-top: 18px
}

.m-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.1
}

.m-role {
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 5px
}

.m-toggle {
    flex: none;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-lt);
    background: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: ease .35s
}

.m-toggle::before,
.m-toggle::after {
    content: "";
    position: absolute;
    background: var(--text);
    transition: ease .35s;
    top: 50%;
    left: 50%
}

.m-toggle::before {
    width: 12px;
    height: 1.3px;
    transform: translate(-50%, -50%)
}

.m-toggle::after {
    width: 1.3px;
    height: 12px;
    transform: translate(-50%, -50%)
}

.m-toggle:hover {
    background: var(--ink)
}

.m-toggle:hover::before,
.m-toggle:hover::after {
    background: #fff
}

.member.open .m-toggle {
    background: var(--ink)
}

.member.open .m-toggle::before,
.member.open .m-toggle::after {
    background: #fff
}

.member.open .m-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0
}

.m-bio {
    grid-column: 1/-1;
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s ease
}

.m-bio.open {
    max-height: 1600px;
}

.m-bio-in {
    padding: 30px 0 8px;
    overflow: hidden;
    min-height: 0;
}

.m-creds {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--silver-lo);
    line-height: 1.9;
    margin-bottom: 16px
}

.m-bio-in p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 12px
}

.m-bio-in .m-desc {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 6px
}

@media(max-width:900px) {
    .team-list {
        /*grid-template-columns: repeat(2, 1fr);*/
    }

    .team-bg {
        height: clamp(300px, 56vw, 420px)
    }
}

@media(max-width:520px) {
    .team-list {
        /*grid-template-columns: 1fr;*/
    }
}

/* HOME hero video */
#banner {
    position: relative;
    height: 100vh;
    /*min-height: 620px;*/
    overflow: hidden;
    display: flex;
    align-items: flex-end
}


#banner .video {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--ink)
}

#banner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    pointer-events: none;
    border: 0
        
}

#banner:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(33, 30, 27, .5) 0%, rgba(33, 30, 27, .12) 34%, rgba(33, 30, 27, .18) 62%, rgba(33, 30, 27, .74) 100%)
}

#banner .section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 9vh
}

#banner .kicker {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px
}

#banner .kicker::before {
    content: "";
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .6)
}

#banner h1 {
    font-family: var(--serif);
    font-weight: 400;
    color: #fff;
    font-size: clamp(40px, 7.4vw, 92px);
    line-height: 1.0;
    letter-spacing: -.01em
}

#banner h1 em {
    font-style: italic;
    color: var(--silver-hi)
}

/*-- Page content --*/

.page-section {
    padding: 130px 0
}

#contact.page-section {
    padding-bottom: 0;
}

.light {
    background: var(--paper);
}

.page-section .lead {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(24px, 3.1vw, 40px);
    line-height: 1.32;
    letter-spacing: -.005em;
    max-width: 380px;
    color: var(--ink)
}

.page-section .lead em {
    font-style: italic;
    color: var(--text-dim)
}

.page-section .blog-lead {
    max-width: 500px;
}

.page-section .blog-lead em {
    color: var(--ink);
}

.page-section .sub {
    margin-top: 40px;
    max-width: 600px;
    font-size: 16px;
    color: var(--text-dim)
}


/* link row / teaser */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line-lt);
    padding-bottom: 7px;
    transition: ease .3s
}

.text-link:hover {
    color: #000;
    border-color: var(--silver-lo)
}

.dark .text-link {
    color: #fff;
    border-color: var(--line-dk)
}

.dark .text-link:hover {
    border-color: var(--silver)
}

.dark.center {
    background: var(--ink);
    text-align: center;
    padding: 120px 0
}

.dark.center h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.08;
    color: #fff
}

.dark.center h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--silver)
}

.dark.center .text-link {
    margin-top: 34px;
    justify-content: center;
    color: #fff;
    border-color: var(--line-dk)
}

.dark.center .text-link:hover {
    color: #fff;
    border-color: var(--silver)
}

/* ---- CONTACT TILES ---- */

#contact .intro .title {
    flex: 0 0 60%;
}

@media(max-width: 768px) {
    #contact .intro .title {
        flex: 0 0 100%;
    }
}

#contact .intro .title h2 {
    width: 80%;
}

#contact .intro .title h2 em {
    color: var(--ink);
}

.contact {
    padding: 60px 40px;
}

.contact .tile {
    flex: 0 0 calc(100% / 4 - 0.8px);
}

@media(max-width: 990px) {
    .contact .tile {
        padding: 42px 28px;
    }
}

@media(max-width: 860px) {
    .contact .tile {
        flex: 0 0 100%;
    }
}

.contact .tile .icon  {
    width: 30px;
    height: 30px;
    margin-bottom: 30px;
}

.contact .tile .icon,
.contact .tile .icon > p {
    color: var(--ink);
}

.contact .tile .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contact .tile .type {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact .tile .val {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.32;
    color: var(--ink);
}

.contact .tile .val a:hover {
    color: var(--silver-lo);
}

.contact .tile .note {
    font-size: 14px;
    font-family: var(--sans);
    font-style: unset;
    font-weight: 300;
    color: var(--text-dim);
    margin-top: 12px;
    padding: 0;
    border: 0;
}

.address.section {
    max-width: var(--maxw);
}

.address.section .title {
    width: 45%;
}

.address.section .title h2 {
    font-size: 38px;
}

@media(max-width: 990px) {
    .address.section .title {
        width: 50%;
    }
    
    .address.section .title h2 {
        font-size: 32px;
    }
}

@media(max-width: 768px) {
    
    .address.section .title {
        width: 70%;
    }
    
    .address.section .title h2 {
        font-size: 26px;
    }
}

.address.section .body {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 34px;
}

.address.section .body .list {
    min-width: 180px;
}

.address.section .body .type {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--silver-lo);
    margin-bottom: 10px;
}

.address.section .body .value {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.5;
    color: var(--silver-hi);
}

/*-- Contact Form --*/

.form.section .title {
    width: 50%;
    margin-bottom: 54px;
}

.form .form-field {
    position: relative;
    display: flex;
    flex-flow: column;
    margin-bottom: 42px;
}

.form .label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--silver-lo);
    margin-bottom: 12px;
}

.form .input-text,
.form .textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-lt);
    padding: 8px 2px 12px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    color: var(--ink);
    transition: border-color .3s;
}

.form .textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.7;
}

.form input:focus, 
.form textarea:focus,
.form input:focus-visible,
.form textarea:focus-visible {
    outline: none;
    border-bottom-color: var(--ink);
}

.form-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 26px;
    max-width: 460px;
}

.help-block {
    color: #ce3838;
}

.submit {
    margin-top: 30px;
}

#btnFWSubmit.btn {
    margin-top: 20px;
}

#btnFWSubmit.btn:hover {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}


#google-recaptcha {
    margin: 40px 0;
}

#google-recaptcha > div {
    padding: 0;
}

.formwidgetsubmitresult {
    display: block;
    margin-top: 30px;
}


/*-- FOOTER --*/

#footer, #footer-blog {
    max-width: 100%;
    background: var(--ink);
    color: var(--silver);
    border-top: 1px solid var(--line-dk);
}

#footer-blog {
    padding: 84px 0 0;
    border-top: 1px solid var(--line-dk);
}

.foot-top {
    display: flex;
    gap: 56px;
    border-bottom: 1px solid var(--line-dk);
    justify-content: space-between;
    padding-bottom: 54px;
}


.foot-top img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 0px;
}

@media(max-width: 576px) {
    .foot-top {
        flex-flow: column;
        gap: 30px;
    }
}

.foot-socials {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.foot-socials a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--silver-lo);
    text-decoration: none;
    transition: .3s;
}

.foot-socials a:hover {
    color: #fff;
}

.foot-contact {
    font-size: 14px;
    line-height: 2;
    color: var(--silver);
    flex: 0 0 50%;
}

.foot-contact p {
    margin-bottom: 0;
}

.foot-contact a {
    color: var(--silver);
    text-decoration: none;
}

.foot-contact a:hover {
    color: #fff;
}

@media(max-width: 768px) {
    .foot-contact {
        flex: 0 0 100%;
    }
}

.disclaimer {
    padding: 38px 0;
    border-bottom: 1px solid var(--line-dk);
    font-size: 12.5px;
    color: var(--silver-lo);
    line-height: 1.85;
    max-width: 630px;
}


.foot-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding: 28px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.foot-links a {
    color: var(--silver-lo);
    text-decoration: none;
}

.foot-links a:hover {
    color: #fff;
}

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0 40px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--silver-lo);
}



/*-- reveal --*/
.animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease
}

.animation.in {
    opacity: 1;
    transform: none
}


/*------- Map --------*/

#map {
    height: 520px;
    width: 100%;
}

@media(max-width: 990px) {
    #map  {
        height: 420px;
    }
}


@media(max-width: 576px) {
    #map  {
        height: 320px;
    }
}


/*--- Article ---*/

.blog-section {
    margin-top: 48px;
}

#cast-show-list {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.post-area {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line-lt);
    background: var(--paper-2);
    transition: box-shadow .4s ease;
    min-height: 236px;
    flex: 0 0 calc(50% - 12px);
}

.post-area:hover {
    box-shadow: 0 24px 60px -34px rgba(33, 30, 27, .4);
}

@media(max-width: 768px) {
    .post-area {
        flex: 0 0 100%;
        transition: ease .35s;
    }
    
}

.post-area .cate {
    background: var(--ink);
    color: var(--silver-hi);
    padding: 17px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .24em;
    opacity: .9;
}

.post-body {
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(21px, 2.3vw, 27px);
    line-height: 1.16;
    color: var(--ink);
    margin-bottom: auto;
}

.post-bottom {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
}

.post-bottom p {
    margin: 0;
}

.post-area:hover .post-bottom svg {
    transform: translate(3px, -3px);
}

.post-bottom svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
    transition: transform .3s;
}


/* Blog coming box */

.blog-coming {
    margin-top: 52px;
    border: 1px dashed var(--line-lt);
    padding: 40px;
    text-align: center;
    color: var(--text-dim);
}
    
.blog-coming .title {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--silver-lo);
}

.blog-coming p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--text);
    margin-top: 12px;

}


/*-- News content --*/

.news .intro {
    padding: 60px 0 12px;
    display: block;
}

.news .intro.two-cols {
    display: flex;
    flex-flow: row;
    gap: 48px;
}

.news .intro .left {
    padding: 32px 32px 34px;
    background: var(--paper-2);
    border: 1px solid var(--line-lt);
}

.news .intro .left,
.news .intro .right {
    flex: 0 0 50%;
}

.news .intro .left ul {
    list-style: none;
    padding: 0;
}

.news .intro .left ul li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--text);
}

.news .intro .left ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 1.5px;
    background: var(--silver);
}

@media(max-width: 990px) {
    .news .intro.two-cols {
        flex-flow: column;
    }
    
    .news .intro .left,
    .news .intro .right {
        flex: 0 0 100%;
    }
}

.news .intro .left .lead,
.news .intro .right .lead {
    margin-top: 0;
}

.news h2 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.16;
    letter-spacing: .002em;
    font-size: 33px;
    margin: 0 0 8px;
}

.news .intro p {
    font-size: 19px;
    color: var(--text);
    max-width: 720px;
}

.news .main {
    padding: 48px 0 8px;
}

.news .content-list {
    border-top: 1px solid var(--line-lt);
    padding: 26px 0;
}


.news .content-list:first-of-type {
    border-top: none;
    padding-top: 0;
}

.news .content-list h2 {
    margin-bottom: 26px;
}

.news .content-list h2 em {
    font-style: italic;
    color: var(--text-dim);
}

.news .content-list p {
    margin: 0 0 16px;
    max-width: 680px;
}

.news .blockquote {
    font-weight: 500;
    margin: 0 0 18px;
    padding-left: 20px;
    border-left: 1.5px solid var(--silver);
}

.news .blockquote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 23px;
    line-height: 1.42;
    color: var(--text-dim);
    max-width: 780px;
}

.news .blockquote p:before,
.news .blockquote p:after {
    content: "“";
    display: inline-block;
    color: var(--silver);
    font-style: normal;
}

.news .blockquote p:after {
    content: "”";
}

.news .blockquote .small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--textdim);
    margin-top: 12px;
}

.news .main img {
    max-width: 880px;
    object-fit: cover;
    margin: 20px 0;
}

@media(max-width: 990px) {
    .news .main img {
        max-width: 100%;
    }
}

.news-bottom-section {
    padding: 70px 40px;
    color: var(--silver-hi);
}

.news-bottom-section .lead {
    margin-top: 0;
}

.news .news-bottom-section h2 {
    color: var(--silver-hi);
}

.news .news-bottom-section p {
    max-width: 760px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--silverhi);
    margin-top: 4px;
    
}