/* ==========================================================================
   RICHARD ZAMPELLA — CORE CSS
   Consolidated from audited production stylesheets.
   Cascade order intentionally preserved:
   1. hero.css
   2. bootstrap.min.css
   3. richard-zampella.css
   4. responsive-clean.css
   ========================================================================== */

/* --- 1. HERO ------------------------------------------------------------- */
/* RichardZampella.com — native hero */
#intro.rzHero {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
    background: #161616;
}

#intro.rzHero .rzHeroMedia,
#intro.rzHero .rzHeroShade,
#intro.rzHero .rzHeroCover {
    position: absolute;
    inset: 0;
}

#intro.rzHero .rzHeroMedia {
    z-index: 0;
    overflow: hidden;
    background: #161616;
}

#intro.rzHero .rzHeroPicture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

#intro.rzHero .rzHeroImage {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

#intro.rzHero .rzHeroImageBase {
    z-index: 0;
    opacity: 1;
}

#intro.rzHero .rzHeroImageSwap {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1200ms ease;
}

#intro.rzHero .rzHeroImageSwap:not([src]) { display: none; }
#intro.rzHero .rzHeroImageSwap.is-visible { opacity: 1; }

#intro.rzHero .rzHeroShade {
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 40% center, rgba(0,0,0,0) 0%, rgba(0,0,0,.31) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.34));
}

#intro.rzHero .rzHeroCover {
    z-index: 3;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    background:
        radial-gradient(ellipse at 50% 46%, #303030 0%, #282828 27%, #1d1d1d 48%, #0d0d0d 75%, #000 100%);
    animation: rzHeroCurtainLift 520ms cubic-bezier(.76,0,.24,1) 700ms forwards;
}

#intro.rzHero .rzHeroStage,
#intro.rzHero .rzHeroIntroUI {
    position: relative;
    grid-area: 1 / 1;
    box-sizing: border-box;
    width: min(92vw, 920px);
    min-height: 455px;
    padding: 22px 24px 18px;
    text-align: center;
    color: #fff;
    transform: translate3d(0, -12px, 0);
    transform-origin: center center;
}

#intro.rzHero .rzHeroStage {
    z-index: 2;
}

#intro.rzHero .rzHeroIntroUI {
    z-index: 4;
    pointer-events: none;
}

#intro.rzHero .rzHeroLogoWrap {
    --rz-logo-hold-y: 205px;
    position: relative;
    z-index: 2;
    display: block;
    width: 200px;
    height: 133px;
    margin: 0 auto 7px;
    opacity: 0;
    transform: translate3d(0, var(--rz-logo-hold-y), 0);
    animation: rzHeroLogoAppearDesktop 420ms ease 120ms forwards;
    will-change: opacity;
}

#intro.rzHero .rzHeroLogo {
    position: absolute;
    inset: 0;
    display: block;
    width: 200px;
    height: 133px;
    max-width: none;
    object-fit: contain;
    opacity: 1;
    transform: translateZ(0);
}

#intro.rzHero .rzHeroLogoVeil {
    position: absolute;
    z-index: 1;
    left: 70px;
    top: 17px;
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(48,48,48,.86);
    opacity: 1;
    pointer-events: none;
    will-change: opacity;
    animation: rzHeroLogoVeilExit 620ms ease-out 120ms forwards;
}

#intro.rzHero .rzHeroLoader {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 350px;
    display: block;
    width: 44px;
    height: 44px;
    opacity: 0;
    transform: translate3d(-50%, 40px, 0);
    will-change: transform, opacity;
    animation: rzHeroLoaderSequence 930ms linear 180ms forwards;
}

#intro.rzHero .rzHeroLoaderSpinner {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    display: block;
    border: 10px solid rgba(102,233,249,.20);
    border-top-color: #66e9f9;
    border-right-color: #66e9f9;
    border-radius: 50%;
    filter: drop-shadow(0 0 3px rgba(102,233,249,.24));
    transform: translateZ(0) rotate(0deg);
    transform-origin: 50% 50%;
    will-change: transform;
    animation: rzHeroLoaderSpin 460ms linear 260ms 2;
}

#intro.rzHero .rzHeroReveal {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Desktop choreography: logo and copy rise as one composition. Both travel
   exactly 48px over the same 700ms interval with the same cubic-bezier easing,
   preserving their spacing throughout the move. No second logo move or exit. */
@media only screen and (min-width: 768px) {
    #intro.rzHero .rzHeroStage,
    #intro.rzHero .rzHeroIntroUI {
        transform: translate3d(0, 160px, 0);
    }

    #intro.rzHero .rzHeroLogoWrap {
        --rz-logo-final-y: -110px;
        --rz-hero-rise-distance: 48px;
        --rz-logo-start-y: calc(var(--rz-logo-final-y) + var(--rz-hero-rise-distance));
        opacity: 1;
        transform: translate3d(0, var(--rz-logo-start-y), 0);
        animation: rzHeroLogoRiseDesktop 700ms cubic-bezier(.22,.61,.36,1) 1220ms forwards;
        will-change: transform;
    }

    /* IntroUI moved down to the copy stage; compensate so the loader stays
       exactly where it was on screen. */
    #intro.rzHero .rzHeroLoader {
        top: 178px;
    }

    #intro.rzHero .rzHeroReveal {
        animation: rzHeroTextRiseDesktop 700ms cubic-bezier(.22,.61,.36,1) 1220ms both;
    }
}

/* Optical centering for wide desktop: retain the existing 22px balance. */
@media only screen and (min-width: 1025px) {
    #intro.rzHero .rzHeroStage,
    #intro.rzHero .rzHeroIntroUI {
        transform: translate3d(22px, 160px, 0);
    }
}

#intro.rzHero .rzHeroLead,
#intro.rzHero .rzHeroSecondary {
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -1px;
}

#intro.rzHero .rzHeroLead {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 30px;
}

#intro.rzHero .rzHeroRule {
    position: relative;
    display: block;
    width: 1px;
    height: 50px;
    margin: 3px auto 19px;
    background: rgba(255,255,255,.92);
}

#intro.rzHero .rzHeroSecondary {
    margin-top: 0;
    margin-bottom: 17px;
    font-size: 25px;
    line-height: 30px;
}

#intro.rzHero .heroPrimaryTitle {
    display: block;
    visibility: visible !important;
    margin: 0 0 14px;
    color: #fff !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 34px !important;
    letter-spacing: 2.9px !important;
    text-transform: uppercase !important;
    white-space: nowrap;
}

#intro.rzHero .rzHeroMore {
    position: relative;
    display: inline-block;
    visibility: visible !important;
    margin: 0;
    padding: 0 40px;
    min-height: 40px;
    border-radius: 0;
    color: #fff !important;
    background-color: rgba(245,245,245,.20);
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    #intro.rzHero .rzHeroCover {
        background:
            radial-gradient(ellipse at 50% 43%,
                #303030 0%,
                #282828 28%,
                #1d1d1d 50%,
                #0d0d0d 76%,
                #000 100%);
    }

    #intro.rzHero .rzHeroShade {
        background:
            linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.46) 73%, rgba(0,0,0,.64) 100%),
            radial-gradient(ellipse at 50% 28%, rgba(0,0,0,0) 0%, rgba(0,0,0,.22) 100%);
    }

    #intro.rzHero .rzHeroStage,
    #intro.rzHero .rzHeroIntroUI {
        width: 100%;
        min-height: 430px;
        padding: 22px 18px 16px;
        transform: translate3d(0, clamp(76px, 12svh, 108px), 0);
    }

    #intro.rzHero .rzHeroLogoWrap {
        --rz-logo-open-y: 164px;
        --rz-logo-enter-y: 190px;
        --rz-logo-exit-y: calc(-1 * clamp(240px, 24svh, 320px));
        width: 170px;
        height: 113px;
        margin-bottom: 6px;
        transform: translate3d(0, var(--rz-logo-enter-y), 0);
        will-change: transform, opacity;
        animation: rzHeroLogoSequenceMobile 1990ms linear 120ms forwards;
    }

    #intro.rzHero .rzHeroLogo {
        inset: auto;
        left: 55px;
        top: 12px;
        width: 59px;
        height: auto;
    }

    #intro.rzHero .rzHeroLogoVeil {
        left: 59px;
        top: 15px;
        width: 51px;
        height: 51px;
        background: rgba(48,48,48,.80);
    }

    #intro.rzHero .rzHeroReveal {
        /* Mobile copy sits in the lower two-thirds of the portrait hero. */
        top: clamp(72px, 10svh, 120px);
    }

    #intro.rzHero .rzHeroLoader { top: 300px; }

    #intro.rzHero .rzHeroLead {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 9px;
    }

    #intro.rzHero .rzHeroRule {
        height: 44px;
        margin: 2px auto 16px;
    }

    #intro.rzHero .rzHeroSecondary {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    #intro.rzHero .heroPrimaryTitle { margin-bottom: 12px; }
}

@media only screen and (max-width: 390px) {
    #intro.rzHero .rzHeroStage,
    #intro.rzHero .rzHeroIntroUI {
        transform: translate3d(0, clamp(66px, 10svh, 90px), 0) scale(.94);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    #intro.rzHero .rzHeroStage,
    #intro.rzHero .rzHeroIntroUI {
        transform: translate3d(0, -32px, 0) scale(1.12);
    }

    /* Preserve the pre-existing tablet-portrait logo/loader geometry. */
    #intro.rzHero .rzHeroLogoWrap {
        --rz-logo-hold-y: 205px;
        opacity: 0;
        transform: translate3d(0, var(--rz-logo-hold-y), 0);
        animation: rzHeroLogoAppearDesktop 420ms ease 120ms forwards;
        will-change: opacity;
    }

    #intro.rzHero .rzHeroLoader { top: 350px; }
}

@media (prefers-reduced-motion: reduce) {
    #intro.rzHero .rzHeroCover { display: none; animation: none; transform: none; }
    #intro.rzHero .rzHeroLogoWrap { opacity: 1; transform: none; animation: none; will-change: auto; }
    #intro.rzHero .rzHeroLogo { transform: none; }
    #intro.rzHero .rzHeroLogoVeil { display: none; animation: none; }
    #intro.rzHero .rzHeroLoader { display: none; animation: none; }
    #intro.rzHero .rzHeroReveal { opacity: 1; transform: none; }
    #intro.rzHero .rzHeroImageSwap { transition: none; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1025px),
       (prefers-reduced-motion: reduce) and (min-width: 768px) and (orientation: landscape) {
    #intro.rzHero .rzHeroLogoWrap {
        transform: translate3d(0, -110px, 0);
    }
}

@keyframes rzHeroLogoAppearDesktop {
    from { opacity: 0; transform: translate3d(0, var(--rz-logo-hold-y), 0); }
    to { opacity: 1; transform: translate3d(0, var(--rz-logo-hold-y), 0); }
}

@keyframes rzHeroLogoRiseDesktop {
    from { transform: translate3d(0, var(--rz-logo-start-y), 0); }
    to { transform: translate3d(0, var(--rz-logo-final-y), 0); }
}

@keyframes rzHeroLogoSequenceMobile {
    0% { opacity: 1; transform: translate3d(0, var(--rz-logo-enter-y), 0); animation-timing-function: cubic-bezier(.22,.61,.36,1); }
    32% { opacity: 1; transform: translate3d(0, var(--rz-logo-open-y), 0); }
    45% { opacity: 1; transform: translate3d(0, var(--rz-logo-open-y), 0); animation-timing-function: cubic-bezier(.55,.08,.68,.53); }
    100% { opacity: 0; transform: translate3d(0, var(--rz-logo-exit-y), 0); }
}

@keyframes rzHeroLogoVeilExit {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes rzHeroLoaderSequence {
    0% { opacity: 0; transform: translate3d(-50%, 40px, 0); }
    45.3% { opacity: 1; transform: translate3d(-50%, 18px, 0); }
    68.6% { opacity: 1; transform: translate3d(-50%, 18px, 0); animation-timing-function: ease; }
    100% { opacity: 0; transform: translate3d(-50%, -6px, 0); }
}

@keyframes rzHeroLoaderSpin {
    from { transform: translateZ(0) rotate(0deg); }
    to { transform: translateZ(0) rotate(360deg); }
}

@keyframes rzHeroCurtainLift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -101%, 0); }
}

@keyframes rzHeroTextRiseDesktop {
    from { transform: translate3d(0, 48px, 0); }
    to { transform: translate3d(0, 0, 0); }
}


/* --- 2. REDUCED BOOTSTRAP ------------------------------------------------ */
/*! Bootstrap v3.2.0 — RichardZampella.com reduced homepage build. Derived from existing site Bootstrap; retained reset/scaffolding, used grid, buttons, navbar/collapse, affix and utilities. */
html{font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;}body{margin: 0;}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display: block;}audio,canvas,progress,video{display: inline-block;
    vertical-align: baseline;}audio:not([controls]){display: none;
    height: 0;}[hidden],template{display: none;}a{background: 0 0;}a:active,a:hover{outline: 0;}abbr[title]{border-bottom: 1px dotted;}b,strong{font-weight: 700;}dfn{font-style: italic;}h1{margin: 0.67em 0;
    font-size: 2em;}mark{color: #000;
    background: #ff0;}small{font-size: 80%;}sub,sup{position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;}sup{top: -0.5em;}sub{bottom: -0.25em;}img{border: 0;}svg:not(:root){overflow: hidden;}figure{margin: 1em 40px;}hr{height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;}pre{overflow: auto;}code,kbd,pre,samp{font-family: monospace, monospace;
    font-size: 1em;}button,input,optgroup,select,textarea{margin: 0;
    font: inherit;
    color: inherit;}button{overflow: visible;}button,select{text-transform: none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance: button;
    cursor: pointer;}button[disabled],html input[disabled]{cursor: default;}button::-moz-focus-inner,input::-moz-focus-inner{padding: 0;
    border: 0;}input{line-height: normal;}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height: auto;}input[type="search"]{-webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance: none;}fieldset{padding: 0.35em 0.625em 0.75em;
    margin: 0 2px;
    border: 1px solid silver;}legend{padding: 0;
    border: 0;}textarea{overflow: auto;}optgroup{font-weight: 700;}table{border-spacing: 0;
    border-collapse: collapse;}td,th{padding: 0;}*{-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;}:before,:after{-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;}html{font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}body{font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;}input,button,select,textarea{font-family: inherit;
    font-size: inherit;
    line-height: inherit;}a{color: #428bca;
    text-decoration: none;}a:hover,a:focus{color: #2a6496;
    text-decoration: underline;}a:focus{outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;}figure{margin: 0;}img{vertical-align: middle;}.img-responsive{display: block;
    width: 100% \	;
    max-width: 100%;
    height: auto;}hr{margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;}.sr-only{position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;}h1,h2,h3,h4,h5,h6{font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight: 400;
    line-height: 1;
    color: #777;}h1,h2,h3{margin-top: 20px;
    margin-bottom: 10px;}h1 small,h2 small,h3 small{font-size: 65%;}h4,h5,h6{margin-top: 10px;
    margin-bottom: 10px;}h4 small,h5 small,h6 small{font-size: 75%;}h1{font-size: 36px;}h2{font-size: 30px;}h3{font-size: 24px;}h4{font-size: 18px;}h5{font-size: 14px;}h6{font-size: 12px;}p{margin: 0 0 10px;}small{font-size: 85%;}cite{font-style: normal;}mark{padding: 0.2em;
    background-color: #fcf8e3;}.text-center{text-align: center;}ul,ol{margin-top: 0;
    margin-bottom: 10px;}ul ul,ol ul,ul ol,ol ol{margin-bottom: 0;}dl{margin-top: 0;
    margin-bottom: 20px;}dt,dd{line-height: 1.42857143;}dt{font-weight: 700;}dd{margin-left: 0;}abbr[title],abbr[data-original-title]{cursor: help;
    border-bottom: 1px dotted #777;}blockquote{padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom: 0;}blockquote footer,blockquote small{display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777;}blockquote footer:before,blockquote small:before{content: "— ";}blockquote:before,blockquote:after{content: "";}address{margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;}code,kbd,pre,samp{font-family: Menlo, Monaco, Consolas, "Courier New", monospace;}code{padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;}kbd{padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);}kbd kbd{padding: 0;
    font-size: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;}pre{display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;}pre code{padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;}.container{padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;}@media (min-width: 768px){.container{width: 750px;}}@media (min-width: 992px){.container{width: 970px;}}@media (min-width: 1200px){.container{width: 1170px;}}.container-fluid{padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;}.row{margin-right: -15px;
    margin-left: -15px;}.col-md-3,.col-sm-4,.col-md-4,.col-sm-6,.col-md-6,.col-md-8,.col-md-10,.col-xs-12,.col-sm-12{position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;}.col-xs-12{float: left;}.col-xs-12{width: 100%;}@media (min-width: 768px){.col-sm-4,.col-sm-6,.col-sm-12{float: left;}.col-sm-12{width: 100%;}.col-sm-6{width: 50%;}.col-sm-4{width: 33.33333333%;}}@media (min-width: 992px){.col-md-3,.col-md-4,.col-md-6,.col-md-8,.col-md-10{float: left;}.col-md-10{width: 83.33333333%;}.col-md-8{width: 66.66666667%;}.col-md-6{width: 50%;}.col-md-4{width: 40.33333333%;}.col-md-3{width: 25%;}.col-md-offset-3{margin-left: 25%;}.col-md-offset-2{margin-left: 16.66666667%;}.col-md-offset-1{margin-left: 8.33333333%;}}table{background-color: transparent;}th{text-align: left;}table col[class*="col-"]{position: static;
    display: table-column;
    float: none;}table td[class*="col-"],table th[class*="col-"]{position: static;
    display: table-cell;
    float: none;}fieldset{min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;}legend{display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;}label{display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;}input[type="search"]{-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;}input[type="radio"],input[type="checkbox"]{margin: 4px 0 0;
    margin-top: 1px \	;
    line-height: normal;}input[type="file"]{display: block;}input[type="range"]{display: block;
    width: 100%;}select[multiple],select[size]{height: auto;}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;}output{display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;}input[type="search"]{-webkit-appearance: none;}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height: 34px;
    line-height: 1.42857143 �;}input[type="radio"][disabled],input[type="checkbox"][disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor: not-allowed;}.btn{display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;}.btn:focus,.btn:active:focus,.btn.active:focus{outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;}.btn:hover,.btn:focus{color: #333;
    text-decoration: none;}.btn:active,.btn.active{background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.65;}.btn-default{color: #333;
    background-color: #fff;
    border-color: #ccc;}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active{color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;}.btn-default:active,.btn-default.active{background-image: none;}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color: #fff;
    border-color: #ccc;}.btn-primary{color: #fff;
    background-color: #428bca;
    border-color: #357ebd;}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active{color: #fff;
    background-color: #3071a9;
    border-color: #285e8e;}.btn-primary:active,.btn-primary.active{background-image: none;}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color: #428bca;
    border-color: #357ebd;}.collapse{display: none;}.collapse.in{display: block;}tr.collapse.in{display: table-row;}tbody.collapse.in{display: table-row-group;}.collapsing{position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;}[data-toggle="buttons"] > .btn > input[type="radio"],[data-toggle="buttons"] > .btn > input[type="checkbox"]{position: absolute;
    z-index: -1;
    filter: alpha(opacity=0);
    opacity: 0;}.nav{padding-left: 0;
    margin-bottom: 0;
    list-style: none;}.nav > li{position: relative;
    display: block;}.nav > li > a{position: relative;
    display: block;
    padding: 10px 15px;}.nav > li > a:hover,.nav > li > a:focus{text-decoration: none;
    background-color: #eee;}.nav > li.disabled > a{color: #777;}.nav > li.disabled > a:hover,.nav > li.disabled > a:focus{color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;}.nav .open > a,.nav .open > a:hover,.nav .open > a:focus{background-color: #eee;
    border-color: #428bca;}.nav > li > a > img{max-width: none;}.navbar{position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;}@media (min-width: 768px){.navbar{border-radius: 4px;}}@media (min-width: 768px){.navbar-header{float: left;}}.navbar-collapse{padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);}.navbar-collapse.in{overflow-y: auto;}@media (min-width: 768px){.navbar-collapse{width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;}.navbar-collapse.collapse{display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;}.navbar-collapse.in{overflow-y: visible;}.navbar-fixed-top .navbar-collapse{padding-right: 0;
        padding-left: 0;}}.navbar-fixed-top .navbar-collapse{max-height: 340px;}@media (max-width: 480px) and (orientation: landscape){.navbar-fixed-top .navbar-collapse{max-height: 200px;}}.container > .navbar-header,.container-fluid > .navbar-header,.container > .navbar-collapse,.container-fluid > .navbar-collapse{margin-right: -15px;
    margin-left: -15px;}@media (min-width: 768px){.container > .navbar-header,.container-fluid > .navbar-header,.container > .navbar-collapse,.container-fluid > .navbar-collapse{margin-right: 0;
        margin-left: 0;}}.navbar-fixed-top{position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}@media (min-width: 768px){.navbar-fixed-top{border-radius: 0;}}.navbar-fixed-top{top: 0;
    border-width: 0 0 1px;}.navbar-brand{float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;}.navbar-brand:hover,.navbar-brand:focus{text-decoration: none;}@media (min-width: 768px){.navbar > .container .navbar-brand,.navbar > .container-fluid .navbar-brand{margin-left: -15px;}}.navbar-toggle{position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;}.navbar-toggle:focus{outline: 0;}.navbar-toggle .icon-bar{display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;}.navbar-toggle .icon-bar + .icon-bar{margin-top: 4px;}@media (min-width: 768px){.navbar-toggle{display: none;}}.navbar-nav{margin: 7.5px -15px;}.navbar-nav > li > a{padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;}@media (min-width: 768px){.navbar-nav{float: left;
        margin: 0;}.navbar-nav > li{float: left;}.navbar-nav > li > a{padding-top: 15px;
        padding-bottom: 15px;}.navbar-nav.navbar-right:last-child{margin-right: -15px;}}@media (min-width: 768px){.navbar-right{float: right !important;}}.navbar-default{background-color: #f8f8f8;
    border-color: #e7e7e7;}.navbar-default .navbar-brand{color: #777;}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color: #5e5e5e;
    background-color: transparent;}.navbar-default .navbar-nav > li > a{color: #777;}.navbar-default .navbar-nav > li > a:hover,.navbar-default .navbar-nav > li > a:focus{color: #333;
    background-color: transparent;}.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a:hover,.navbar-default .navbar-nav > .active > a:focus{color: #555;
    background-color: #e7e7e7;}.navbar-default .navbar-nav > .disabled > a,.navbar-default .navbar-nav > .disabled > a:hover,.navbar-default .navbar-nav > .disabled > a:focus{color: #ccc;
    background-color: transparent;}.navbar-default .navbar-toggle{border-color: #ddd;}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color: #ddd;}.navbar-default .navbar-toggle .icon-bar{background-color: #888;}.navbar-default .navbar-collapse{border-color: #e7e7e7;}.navbar-default .navbar-nav > .open > a,.navbar-default .navbar-nav > .open > a:hover,.navbar-default .navbar-nav > .open > a:focus{color: #555;
    background-color: #e7e7e7;}@-webkit-keyframes progress-bar-stripes{from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }}@-o-keyframes progress-bar-stripes{from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }}@keyframes progress-bar-stripes{from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{display: table;
    content: " ";}.clearfix:after,.container:after,.container-fluid:after,.row:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear: both;}.center-block{display: block;
    margin-right: auto;
    margin-left: auto;}.hide{display: none !important;}.show{display: block !important;}.hidden{display: none !important;
    visibility: hidden !important;}.affix{position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}@-ms-viewport {width: device-width;}


/* --- 3. SITE ------------------------------------------------------------- */
/* Richard Zampella — primary homepage stylesheet. Deep-audited 2026-08-21. */
/* Hero-specific rules remain isolated in css/hero.css. */

:root {
    --rz-window-rail: 15px;
}

@media only screen and (min-width: 768px) {
    .mfp-wrap.rz-video-modal .mfp-container {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .mfp-wrap.rz-video-modal .mfp-content {
        width: 850px !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: #000;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper video,.mfp-wrap.rz-video-modal .mfp-content video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .mfp-wrap.rz-video-modal .mfp-close {
        position: absolute !important;
        top: -40px !important;
        right: 0 !important;
        font-size: 32px !important;
        color: #ffffff !important;
        opacity: 1 !important;
        z-index: 99999 !important;
        display: block !important;
    }
}

@media only screen and (max-width: 767px) {
    .container, .container-fluid {
        padding-left: var(--rz-window-rail);
        padding-right: var(--rz-window-rail);
    }

    .mfp-wrap.rz-video-modal .mfp-container {
        padding: 40px var(--rz-window-rail) 20px !important;
        text-align: center !important;
    }

    .mfp-wrap.rz-video-modal .mfp-content {
        width: 100% !important;
        max-width: calc(100vw - (2 * var(--rz-window-rail))) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: #000;
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .mfp-wrap.rz-video-modal .mfp-close {
        top: -38px !important;
        right: 0 !important;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    .mfp-wrap.rz-video-modal .mfp-container {
        padding: 24px var(--rz-window-rail) 16px !important;
        text-align: center !important;
    }

    .mfp-wrap.rz-video-modal .mfp-content {
        width: 100% !important;
        max-width: calc(100vw - (2 * var(--rz-window-rail))) !important;
        max-height: calc(100vh - 40px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper {
        width: auto !important;
        max-width: calc((100vh - 40px) * 1.7777) !important;
        max-height: calc(100vh - 40px) !important;
        margin: 0 auto !important;
        background: #000;
    }

    .mfp-wrap.rz-video-modal .mfp-video-wrapper video {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100vh - 40px) !important;
        height: auto !important;
        display: block !important;
    }

    .mfp-wrap.rz-video-modal .mfp-close {
        top: -34px !important;
        right: 0 !important;
    }
}

html,body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

a {
    color: #252525;
    text-decoration: none;
}

a:hover,a:focus {
    color: #626262;
    text-decoration: none;
    outline: 0;
}

img {
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

section {
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

section .container {
    padding-top: 20px;
    padding-bottom: 50px;
}

.tight-section {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#contactIntro .container {
    padding-top: 75px;
    padding-bottom: 75px;
}

@media only screen and (max-width: 767px) {
    #contactIntro .container {
        padding-top: 20px !important;
        padding-bottom: 15px !important;
    }
}

.row {
    z-index: 3;
    position: relative;
}

.black-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at 40% center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.btn {
    background: transparent;
    border-radius: 0;
    border: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: black;
    padding: 0 40px;
    line-height: 40px;
    letter-spacing: .2em;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    outline: 1px solid transparent;
    transition: all .5s ease .25s;
}

.btn:hover {
    border: none;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.btn:after,.btn:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    background: black;
    z-index: 5;
    transition: all .3s ease 0s;
    outline: 1px solid transparent;
}

.btn:before {
    left: -10px;
}

.btn:hover:before {
    left: -4px;
}

.btn:after {
    right: -10px;
}

.btn:hover:after {
    right: -4px;
}

.btn-white {
    background-color: rgba(250,250,250,0.1);
    color: #d5d5d5;
}

.btn-white:after,.btn-white:before {
    background: white;
}

.btn-default {
    background-color: rgba(245,245,245,1);
}

.btn-white:hover,.btn-white:focus,.btn-white:active,.btn-white.active {
    color: white;
}

.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active {
    color: #333;
    background-color: rgba(250,250,250,0.2);
    border-color: white;
}

.btn:active,.btn.active {
    background-image: none;
    outline: 0;
    box-shadow: none;
}

.btn:focus,.btn:active:focus,.btn.active:focus {
    outline: 0;
}

.btn-black {
    color: #282828;
}

.btn-black:after,.btn-black:before {
    background: #282828;
}

.btn-black:hover {
    color: white;
    background-color: #282828;
    border-color: #282828;
}

.navbar-default {
    padding: 30px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: transparent;
    border-color: transparent;
    transition: all .5s ease .25s;
}

.navbar-default .navbar-brand {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus {
    color: white;
    background-color: transparent;
}

.affix {
    background-color: #ffffff;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.affix .navbar-brand {
    color: #282828;
}

.affix.navbar-default .navbar-nav>.active>a,.affix.navbar-default .navbar-nav>.active>a:hover,.affix.navbar-default .navbar-nav>.active>a:focus {
    color: black;
    background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: white;
}

.affix.navbar-default .navbar-toggle .icon-bar {
    background-color: #282828;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus {
    color: #000000;
    background-color: transparent;
}

.navbar-nav>li>a {
    font-size: 12px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    color: #d5d5d5;
    letter-spacing: 1.6px;
    position: relative;
    padding-left: 18px;
}

.navbar-default .navbar-nav>li>a {
    color: white;
}

.affix.navbar-default .navbar-nav>li>a {
    color: #ababab;
}

.nav li:first-child a:before {
    display: none;
}

.nav li a:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    top: 50%;
    left: 2px;
    transform: translateY(-65%);
    background: rgba(0, 180, 200, 0.75);
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.25s ease, background 0.25s ease;
}

.navbar-nav>li>a:hover:before,.navbar-nav>li.active>a:before {
    opacity: 1;
    transform: translateY(-65%) scale(1.6);
    background: #00d4ff;
}

@media only screen and (max-width: 767px) {
    .navbar-nav>li>a:before,.nav li a:before {
        display: none !important;
        content: none !important;
    }
}

.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus {
    color: #d5d5d5;
}

h1 {
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}

h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 7px;
}

h4 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 7px;
}

h1,h2,h3,h4 {
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
}

.caption-heading .cardTitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    margin: 15px 0 10px;
    color: inherit;
}

.sectionIntro h3 {
    margin-top: -10px;
}

p {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
}

.minimal {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

h2.minimal {
    font-size: 42px;
    letter-spacing: -5.0px;
}

h2 small {
    font-weight: 300;
    font-size: 36px;
    letter-spacing: -1px;
}

h3.minimal {
    font-size: 38px;
    letter-spacing: -2.5px;
}

h3 small {
    font-weight: 300;
    font-size: 38px;
    letter-spacing: -2px;
}

h4.minimal {
    font-size: 28px;
    letter-spacing: -2px;
}

h4 small {
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -2px;
}

.idyleaseStatement {
    font-weight: 400;
    margin-top: 25px;
    color: #222;
}

.customH4 {
    font-family: "Raleway", sans-serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.9px !important;
    color: #fff !important;
    font-style: normal !important;
}

h3 small,h4 small {
    -webkit-font-smoothing: antialiased;
}

.timerWrapper p {
    -webkit-font-smoothing: subpixel-antialiased;
}

.idyleaseIntro {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    max-width: 720px;
    margin: 40px auto 30px;
}

.writingIntro {
    font-family: "Raleway", sans-serif;
    font-weight: 300 !important;
    font-size: 20px;
    line-height: 1.2;
    color: rgba(255,255,255,0.65);
    max-width: 680px;
    margin: 15px auto 15px;
    text-align: center;
}

#text-separator-testimonials .sectionIntro {
    max-width: 72ch;
    margin: 0 auto;
    text-align: center;
}

.inclineLine {
    position: absolute;
    top: -6px;
    width: 70px;
    height: 87px;
    left: 45%;
    z-index: -1;
}

.zigzagSep {
    width: 100px;
    height: 12px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.lineSeparator {
    width: 100px;
    height: 1px;
    background: black;
    margin-top: 20px;
    margin-bottom: 25px;
}

.verticallineSeparator {
    position: relative;
    height: 50px;
    width: 1px;
    background: black;
    margin-bottom: 20px;
}

.sectionIntro .verticallineSeparator {
    margin-top: 30px;
    background: #d5d5d5;
}

.socialWrapper {
    width: 50px;
    height: 50px;
    margin: 2px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.socialIcon i {
    color: #282828;
    font-size: 14px;
    padding: 15px;
}

.socialIcon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.socialIcon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
}

.socialIcon-effect-1 .socialIcon {
    background: rgba(245,245,245,1);
    transition: background 0.2s, color 0.2s;
}

.socialIcon-effect-1 .socialIcon:after {
    top: -4px;
    left: -4px;
    padding: 4px;
    box-shadow: 0 0 0 2px #282828;
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.9);
    opacity: 0;
}

.socialWrapper:hover .socialIcon i {
    color: white;
}

.socialWrapper:hover .socialIcon-effect-1a .socialIcon {
    background: rgba(0,0,0,1);
}

.socialWrapper:hover .socialIcon-effect-1a .socialIcon:after {
    transform: scale(1);
    opacity: 1;
}

#hospitality .hospitalityIntro {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.92);
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    #hospitality.hospitality-dark {
        padding-top: 20px !important;
        padding-bottom: 44px !important;
    }

    #hospitality>.container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

#hospitality {
    color: rgba(255,255,255,0.9);
}

#hospitality .minimal {
    color: rgba(255,255,255,0.9) !important;
}

#hospitality .minimal small {
    color: rgba(255,255,255,0.65) !important;
}

#hospitality .verticallineSeparator {
    background: rgba(255,255,255,0.25) !important;
}

#hospitality p {
    color: rgba(255,255,255,0.9) !important;
}

.hospitality-dark {
    background: #1a1715;
}

#hospitality-quote {
    position: relative;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
    overflow: hidden;
}

#hospitality-quote .container {
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

#hospitality-quote .black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hospitalityQuoteText {
    font-family: "Raleway", sans-serif;
    font-size: 27px;
    line-height: 1.3;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.hospitalityQuoteAttribution {
    display: block;
    margin-top: 20px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.hospitalityNarrative {
    max-width: 820px;
    margin: 0 auto 85px;
    text-align: center;
}

#hospitality .hospitalityNarrative p {
    font-size: 15px !important;
    line-height: 24px !important;
    letter-spacing: normal !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.82) !important;
    margin-bottom: 18px;
}

.hospitalityNarrative-light p {
    color: rgba(255,255,255,0.86);
}

.hospitality-headline {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 0 0 14px;
    text-transform: none;
    letter-spacing: 0;
}

.hospitality-rule {
    max-width: 1180px;
    height: 1px;
    background: rgba(255,255,255,0.22);
    margin: 38px auto 28px;
}

.hospitality-closing {
    text-align: center;
    margin-top: 0px;
}

.hospitality-closing-line {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.62);
    letter-spacing: 0.3px;
    max-width: 750px;
    margin: 16px auto 0;
    text-align: center;
}

.hospitality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    max-width: 1180px;
    margin: 0 auto;
}

.hospitality-card {
    text-align: center;
    cursor: pointer;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hospitality-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: saturate(0.72) brightness(0.9) contrast(1.05);
    transition: transform 0.45s ease-out, filter 0.6s ease-out;
}

.hospitality-card:hover img {
    transform: scale(1.025);
    filter: saturate(0.9) brightness(1.15) contrast(1.05);
}

.hospitality-card h4 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin: 26px 0 10px;
    font-style: normal;
    text-align: center;
}

.hospitality-card span {
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,0.42);
    margin: 0 auto 18px;
}

.hospitality-card p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.68);
    max-width: 230px;
    margin: 0 auto;
    text-align: center;
}

#hospitalityReveal img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

#hospitalityReveal.active img {
    opacity: 1;
}

.hospitality-reveal {
    position: relative;
    max-width: 680px;
    margin: 38px auto 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.65s ease, opacity 0.45s ease;
}

.hospitality-reveal.active {
    max-height: 520px;
    opacity: 1;
}

.hospitality-reveal img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    opacity: 1;
    filter: saturate(0.8) brightness(0.92) contrast(1.05);
}

.hospitality-reveal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.45);
    color: rgba(255,255,255,0.85);
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}

.hospitality-emblem img {
    width: 50px;
    height: auto !important;
    opacity: 0.5;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    #hospitality .hospitality-emblem {
        margin-top: -20px;
    }
}

#hospitality .hospitalityNarrative a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hospitality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hospitality-dark {
        padding: 70px 22px 70px;
    }

    .hospitalityNarrative p {
        font-size: 19px;
    }

    .hospitality-headline {
        font-size: 34px;
    }

    .hospitality-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hospitality-card img {
        height: 260px;
    }
}

.hospitality-image-wrap {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.hospitality-image-wrap img {
    width: 100%;
    display: block;
}

.hospitality-image-rule {
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-top: 28px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .hospitalityNarrative {
        margin-bottom: 15px;
    }
}

#text-separator-timers {
    position: relative;
    min-height: 360px;
    background-color: #1f1f1f;
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    padding: 0;
    overflow: hidden;
}

#text-separator-timers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 21, 0.50);
    z-index: 1;
    pointer-events: none;
}

#text-separator-timers .container-fluid {
    position: relative;
    z-index: 2;
    min-height: 360px;
    padding-top: 70px;
    padding-bottom: 70px;
}

#text-separator-timers .row {
    position: relative;
    z-index: 3;
}

#text-separator-timers .timerWrapper {
    position: relative;
    min-height: 190px;
    padding: 25px 20px;
}

#text-separator-timers p {
    position: relative;
    z-index: 3;
    color: rgba(255,255,255,0.72);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

#text-separator-timers .timerIcon {
    pointer-events: none;
}

#text-separator .container-fluid {
    padding-top: 50px;
    padding-bottom: 60px;
}

#text-separator h2 {
    color: #ffffff;
    text-transform: uppercase;
}

#text-separator .minimal,#text-separator .minimal small {
    color: #ffffff;
}

#text-separator .minimal {
    padding-bottom: 30px;
}

#text-separator h2,#text-separator p {
    position: relative;
    z-index: 100;
    color: #ffffff;
}

.textSepLogo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 1822px;
    height: 927px;
    opacity: 1;
    transition: opacity 1100ms cubic-bezier(.22,.61,.36,1);
}

/* The first post-hero image layer is truly lazy. Keep it visually quiet until
   its real WebP has decoded, then fade it in instead of snapping on. */
.textSepLogo[data-rz-lazy-src],
.textSepLogo.rz-media-loading {
    opacity: 0;
}

.textSepLogo.rz-media-loaded {
    opacity: 1;
}

.timerWrapper {
    padding: 20px;
}

.timerWrapper p {
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timerIcon i {
    font-size: 42px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
}

#text-separator-timers .timerIcon {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}

#text-separator-timers .timerIcon i {
    font-size: 120px;
    color: rgba(255,255,255,0.5);
}

#team {
    background: white;
}

#team .container {
    padding-bottom: 0;
}

.memberParagraph {
    padding-right: 40px;
}

.memberDescription .position {
    margin-top: 0px;
    margin-bottom: 20px;
}

.teamImageWrapper {
    position: relative;
    height: 500px;
    text-align: center;
}

.team-image {
    position: relative;
    width: 90%;
    padding-top: 50px;
}

.galleryImage {
    width: 100%;
    height: auto;
}

#text-separator-testimonials {
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

#text-separator-testimonials .black-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.30) 0%,
        rgba(0,0,0,0.80) 100%
    );
}

#text-separator-testimonials .container {
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

#text-separator-testimonials h2 {
    margin-top: -30px;
}

#text-separator-testimonials p {
    color: rgba(255,255,255,0.85);
}

.review {
    text-align: center;
    padding: 20px 40px 40px;
}

.review p {
    font: 300 14px/24px "Open Sans", sans-serif;
    color: #fff;
}

.review p.minimal {
    font: 300 14px/24px "Open Sans", sans-serif;
    text-transform: none;
    color: #d5d5d5;
}

.review .reviewParagraph {
    font-style: italic;
}

.review h4 {
    letter-spacing: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    #text-separator-testimonials .container {
        padding-top: 45px !important;
        padding-bottom: 27px !important;
    }

    #text-separator-testimonials .sectionIntro {
        margin-bottom: 10px !important;
    }

    #text-separator-testimonials .verticallineSeparator {
        height: 38px !important;
        margin-top: 12px !important;
        margin-bottom: 14px !important;
    }

    #text-separator-testimonials .sectionIntro p {
        margin-bottom: 8px !important;
    }

    #text-separator-testimonials .review {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    #text-separator-testimonials .review p {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    #text-separator-testimonials .review br {
        display: none !important;
    }

    #text-separator-testimonials .review h4 {
        margin-top: 18px !important;
        margin-bottom: 8px !important;
    }

    #text-separator-testimonials .owl-carousel,#text-separator-testimonials .owl-wrapper-outer,#text-separator-testimonials .owl-wrapper,#text-separator-testimonials .owl-item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

#contactIntro {
    position: relative;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#contactContent {
    background: white;
}

#contactContent i {
    font-style: normal;
}

#contactContent .container {
    padding-top: 40px;
    padding-bottom: 45px;
}

.contactInfo1 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contactInfo1 p {
    padding-top: 15px;
}

.contactInfo1 {
    border-right: 1px solid #d5d5d5;
}

.contactInfo1:last-child {
    border: 0;
}

.contactInfo1 i {
    font-size: 30px;
}

iframe {
    border: 0;
}

#featured-works {
    background: white;
}

@media only screen and (max-width: 767px) {
    #featured-works .container {
        padding-top: 30px !important;
        padding-bottom: 44px !important;
    }
}

.featureWrapper {
    padding: 10px;
}

.featureWrapper .caption-heading {
    padding: 10px;
}

.dropcap {
    float: left;
    color: inherit;
    font-size: 50px;
    line-height: 40px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}

#text-separator.tight-section .container-fluid {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.idyleaseImageRow {
    margin-top: 25px;
    margin-bottom: 35px;
}

.idyleaseCompareImage {
    width: 100%;
    display: block;
}

.imageCaption {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.image-16x9 {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.image-16x9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media only screen and (min-width: 768px) {
    .mfp-container.mfp-image-holder img.mfp-img {
        max-height: 76vh !important;
        max-width: 76vw !important;
    }

    .mfp-container.mfp-image-holder .mfp-content {
        max-width: 850px !important;
    }
}

#manuscript {
    background-color: #1f1f22;
    color: #e6e6e6;
    padding: 0;
}

#manuscript .manuscriptTagline {
    font-family: Garamond, "EB Garamond", "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

@media only screen and (max-width: 767px) {
    #manuscript .manuscriptTagline {
        font-size: 19px;
        line-height: 1.25;
    }
}

#manuscript .container {
    overflow: visible !important;
    padding-top: 50px;
    padding-bottom: 75px;
}

@media only screen and (max-width: 767px) {
    #manuscript .container {
        padding-bottom: 25px !important;
    }
}

#manuscript .verticallineSeparator {
    background: #d0d0d0;
}

.manuscriptHeader {
    max-width: 760px;
    margin: 0 auto 38px;
}

#manuscript .sectionParagraph {
    color: #d0d0d0;
}

.manuscriptText {
    max-width: 760px;
    margin: 0 auto;
}

.manuscriptText p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.manuscriptPlate {
    float: right;
    width: 300px;
    max-width: 40%;
    height: auto;
    margin: 5px 0 28px 45px;
}

#films {
    background: white;
}

@media only screen and (max-width: 767px) {
    #films .container {
        padding-top: 25px !important;
        padding-bottom: 28px !important;
    }
}

.filmRow {
    margin-top: 40px;
}

.filmItem {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    #films .filmItem {
        margin-bottom: 18px !important;
    }
}

.filmPoster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background-color: #eaeaea;
    margin-bottom: 15px;
}

.manuscriptFade {
    opacity: 1;
}

.filmPoster.is-loaded,.manuscriptFade.is-loaded {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .manuscriptPlate {
        float: none;
        display: block;
        max-width: 320px;
        width: 100%;
        margin: 0 auto 35px;
    }
}

#rz-portfolio {
    background: #fff;
}

#rz-portfolio.container {
    overflow: visible !important;
}

#rz-portfolio {
    padding-bottom: 40px;
}

#rz-portfolio .rz-portfolio-link {
    display: block;
    text-decoration: none;
    outline: none;
}

#rz-portfolio .rz-portfolio-img {
    background: transparent;
}

#rz-portfolio .rz-portfolio-link:hover img,#rz-portfolio .rz-portfolio-link:focus img {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
}

#rz-portfolio .rz-portfolio-row {
    margin-left: -15px;
    margin-right: -15px;
}

#rz-portfolio .rz-portfolio-item {
    float: left !important;
    width: 33.333333% !important;
    padding-left: 15px;
    padding-right: 15px;
}

#rz-portfolio .rz-portfolio-img {
    width: 100%;
    aspect-ratio: 754 / 594;
    overflow: hidden;
}

#rz-portfolio .rz-portfolio-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
}

#rz-portfolio .rz-portfolio-row:after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    #rz-portfolio .rz-portfolio-item {
        width: 100% !important;
        float: none !important;
    }
}

#rz-portfolio .rz-portfolio-img img {
    transition: transform 6s ease;
}

#rz-portfolio .rz-portfolio-link:hover img {
    transform: scale(1.05);
}

#rz-portfolio .rz-portfolio-img {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

#rz-portfolio .sectionIntro {
    margin-bottom: 50px;
}

#rz-portfolio .rz-portfolio-item {
    margin-bottom: 25px;
}

#rz-portfolio .rz-portfolio-img img {
    filter: contrast(1.02) saturate(0.98);
}

#rz-portfolio .rz-portfolio-img {
    position: relative;
}

#rz-portfolio .rz-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.6s ease;
}

#rz-portfolio .rz-portfolio-link:hover .rz-portfolio-overlay {
    opacity: 1;
}

#rz-video-parallax {
    position: relative;
    min-height: 520px;
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

#rz-video-parallax .black-overlay {
    display: none;
}

#rz-video-parallax .container {
    position: relative;
    z-index: 2;
    overflow: visible !important;
    padding-top: 30px;
    padding-bottom: 15px;
}

#rz-video-parallax p,#rz-video-parallax .sectionParagraph {
    color: #fff !important;
}

#rz-video-parallax .verticallineSeparator {
    background: rgba(255,255,255,0.65) !important;
}

#rz-video-parallax .rz-video-title,#rz-video-parallax .rz-video-separator {
    opacity: 1 !important;
}

#rz-video-parallax .rz-video-item {
    margin-bottom: 30px;
}

#rz-video-parallax .rz-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

#rz-video-parallax .rz-video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 5s ease;
}

#rz-video-parallax .rz-video-popup:hover img {
    transform: scale(1.05);
}

#rz-video-parallax .rz-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    transition: background 0.5s ease;
}

#rz-video-parallax .rz-video-popup:hover .rz-video-overlay {
    background: rgba(0,0,0,0.34);
}

#rz-video-parallax .rz-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 34px;
    color: #fff;
    line-height: 1;
}

@media (max-width: 767px) {
    #rz-video-parallax {
        background-attachment: scroll;
    }
}

.navbar-default,.navbar-default.affix,.navbar-default.affix-top {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 99999 !important;
    transition: none !important;
    transform: translateZ(0);
}

.navbar-default.affix {
    background-color: #fff !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.navbar-default.affix .navbar-brand,.navbar-default.affix .navbar-nav>li>a {
    color: #282828 !important;
}

.mfp-video-wrapper {
    width: 100%;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.mfp-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.mfp-bg {
    z-index: 100000 !important;
    background: rgba(0,0,0,0.90) !important;
}

.mfp-wrap {
    z-index: 100001 !important;
}

.mfp-close {
    position: absolute !important;
    top: -40px !important;
    right: 0 !important;
    font-size: 32px !important;
    color: #ffffff !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    display: block !important;
}

.mfp-close:hover {
    opacity: 0.7;
}

#footer.footer-idylease {
    overflow: hidden;
    background: #111;
    color: #fff;
}

#footer.footer-idylease::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

#footer.footer-idylease .footerTop,#footer.footer-idylease .footer-baseline {
    position: relative;
    z-index: 2;
}

#footer.footer-idylease .footerTop {
    padding: 2px 0 2px;
}

#footer.footer-idylease .footer-baseline-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 60px;
}

#footer.footer-idylease .footerGrid {
    display: grid;
    grid-template-columns: minmax(0, 700px) 330px;
    column-gap: 100px;
    align-items: start;
}

#footer.footer-idylease .footerPrimary,#footer.footer-idylease .footerSecondary {
    margin: 0;
    padding: 0;
}

#footer.footer-idylease .footerPrimary {
    padding-top: 51px;
}

#footer.footer-idylease .footerSecondary {
    padding-top: 42px;
}

#footer.footer-idylease .footerLogo {
    display: block;
    height: auto;
    margin-top: 0;
}

#footer.footer-idylease .footerTransLogo {
    width: 75px;
    margin-bottom: 44px;
}

#footer.footer-idylease .footerIdyleaseLogo {
    width: 165px;
    margin-bottom: 36px;
}

#footer.footer-idylease p,#footer.footer-idylease h3,#footer.footer-idylease h4 {
    margin-top: 0;
}

#footer.footer-idylease .footer-kicker {
    margin-bottom: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
}

#footer.footer-idylease .footerPrimary h3 {
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", "Old Standard TT", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: rgba(255,255,255,0.92);
}

#footer.footer-idylease .footerText {
    max-width: 660px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.58;
    color: rgba(255,255,255,0.74);
}

#footer.footer-idylease .footer-signature {
    margin: 25px 0 0;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.34);
}

#footer.footer-idylease .footer-signature a {
    display: inline-block;
    padding: 11px 2px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
}

#footer.footer-idylease .footer-signature a:hover {
    color: rgba(255,255,255,0.86);
}

#footer.footer-idylease .footerSecondary h4 {
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

#footer.footer-idylease .lineSeparator {
    width: 90px;
    height: 1px;
    margin: 16px 0 22px;
    background: rgba(255,255,255,0.35);
}

#footer.footer-idylease .footerSecondary p,#footer.footer-idylease .footerSecondary a {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
}

#footer.footer-idylease .footerSecondary p {
    margin-bottom: 0;
}

#footer.footer-idylease .footerSecondary a:hover {
    color: rgba(255,255,255,0.92);
}

#footer.footer-idylease .footer-social {
    margin-top: 22px;
}

#footer.footer-idylease .footer-social span {
    display: block;
    margin-bottom: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

#footer.footer-idylease .footer-social a {
    display: inline-block;
    margin-right: 16px;
    font-size: 15px;
    line-height: 1;
    color: rgba(255,255,255,0.56);
    text-decoration: none;
}

#footer.footer-idylease .footer-social a:hover {
    color: rgba(255,255,255,0.90);
}

#footer.footer-idylease .footer-baseline {
    padding: 17px 0 20px;
}

#footer.footer-idylease .footer-baseline::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 13px;
    background: rgba(255,255,255,0.15);
}

#footer.footer-idylease .footer-baseline-inner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 34px;
}

#footer.footer-idylease .footer-copyright,#footer.footer-idylease .footer-link {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 10.5px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}

#footer.footer-idylease .footer-link:hover {
    color: rgba(255,255,255,0.75);
}

@media only screen and (max-width: 900px) {
    #footer.footer-idylease .footerTop {
        padding: 48px 0 34px;
    }

    #footer.footer-idylease .footer-baseline-inner {
        padding: 0 34px;
    }

    #footer.footer-idylease .footerGrid {
        grid-template-columns: 1fr;
        row-gap: 42px;
    }

    #footer.footer-idylease .footerPrimary,#footer.footer-idylease .footerSecondary {
        padding-top: 0;
    }

    #footer.footer-idylease .footerPrimary h3 {
        white-space: normal;
        font-size: 25px;
    }

    #footer.footer-idylease .footer-baseline {
        padding: 16px 0 18px;
    }

    #footer.footer-idylease .footer-baseline-inner {
        justify-content: center;
        align-items: baseline;
        gap: 24px;
        max-width: 1220px;
    }

    #footer.footer-idylease .footer-copyright,#footer.footer-idylease .footer-link {
        font-size: 10px;
        line-height: 1;
        letter-spacing: 0.18em;
    }
}

@media only screen and (max-width: 560px) {
    #footer.footer-idylease .footer-baseline-inner {
        padding: 0 26px;
    }

    #footer.footer-idylease .footer-baseline-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    #footer.footer-idylease .footer-copyright,#footer.footer-idylease .footer-link {
        justify-content: center;
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: 0.16em;
    }
}

#team .teamImageWrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#team .teamImageWrapper .team-image {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
}

#team .rz-team-video-thumb {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: #000;
    aspect-ratio: 16 / 9;
}

#team .rz-team-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#team .rz-team-video-thumb .rz-video-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

#team .allIconsSocialWrapper {
    text-align: center;
}

#team .socialWrapper,#team .socialIcon {
    display: inline-block;
}

#team .socialWrapper {
    vertical-align: top;
}

#team .socialIcon i {
    padding: 15px;
    line-height: normal;
    transform: none !important;
    top: auto !important;
}

#team .teamMember {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

#team .teamMember.rz-team-visible {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 767px) {
    #team .owl-prev {
        left: 10px;
    }

    #team .owl-next {
        right: 10px;
    }
}

#team .rz-team-video-thumb {
    position: relative;
    overflow: hidden;
}

#team #owl-team,#team #owl-team .owl-wrapper-outer,#team #owl-team .owl-wrapper,#team #owl-team .owl-item,#team .teamMember {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
}

#team .teamImageWrapper {
    height: 440px !important;
}

.footer-copy-mobile {
    display: none;
}

@media (max-width: 767px) {
    .footer-copy-desktop {
        display: none;
    }

    .footer-copy-mobile {
        display: block;
        text-align: center;
        white-space: nowrap;
    }
}

.idyleaseStewardship {
    margin-top: 5px;
    margin-bottom: 45px;
    clear: both;
}

.idyleaseStewardshipIntro {
    margin-bottom: 34px;
}

.idyleaseStewardship .lineSeparator {
    width: 80px;
    height: 1px;
    background: #1f1f22;
    margin: 0 auto 34px;
}

.stewardshipTitle.editorialTitle {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Garamond, "EB Garamond", "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -1px;
    text-transform: none;
    font-weight: 400;
    font-style: normal;
    opacity: 0.84;
}

.stewardshipIntroText {
    max-width: 860px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.82;
}

.idyleaseStewardshipGrid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 38px;
    margin: 34px auto 0;
    width: 100%;
    max-width: 1180px;
    padding-left: 15px;
    padding-right: 15px;
}

.stewardshipItem {
    flex: 0 0 calc(33.333% - 26px);
    max-width: calc(33.333% - 26px);
    text-align: center;
}

.stewardshipItem a {
    display: block;
    overflow: hidden;
}

.stewardshipImage {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    border: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stewardshipItem a:hover .stewardshipImage {
    opacity: 0.88;
    transform: scale(1.015);
}

.stewardshipLabel {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.68;
}

@media (max-width: 991px) {
    .idyleaseStewardshipGrid {
        gap: 24px;
        max-width: 920px;
    }

    .stewardshipImage {
        height: 205px;
    }

    .stewardshipTitle.editorialTitle {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .idyleaseStewardship {
        margin-top: 50px;
        margin-bottom: 35px;
    }

    .idyleaseStewardshipIntro {
        margin-bottom: 28px;
    }

    .idyleaseStewardship .lineSeparator {
        margin-bottom: 28px;
    }

    .stewardshipTitle.editorialTitle {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .stewardshipIntroText {
        font-size: 13px;
        line-height: 1.7;
        padding-left: 12px;
        padding-right: 12px;
    }

    .idyleaseStewardshipGrid {
        display: block;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px;
    }

    .stewardshipItem {
        max-width: 100%;
        margin-bottom: 34px;
    }

    .stewardshipImage {
        height: auto;
    }

    .stewardshipLabel {
        margin-top: 14px;
        margin-bottom: 0;
    }
}

.mfp-fade-zoom .mfp-content {
    opacity: 0;
    transform: scale(0.965);
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.mfp-fade-zoom.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade-zoom.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.985);
}

.mfp-fade-zoom .mfp-bg {
    opacity: 0;
    transition: opacity 0.42s ease;
}

.mfp-fade-zoom.mfp-ready .mfp-bg {
    opacity: 0.88;
}

.mfp-fade-zoom.mfp-removing .mfp-bg {
    opacity: 0;
}

html.mfp-no-jump {
    overflow-y: scroll !important;
}

.mfp-wrap {
    overflow-x: hidden !important;
}

.mfp-fade-zoom.mfp-bg {
    opacity: 0;
    transition: opacity 0.42s ease;
    background: #0f0f10;
}

.mfp-fade-zoom.mfp-ready.mfp-bg {
    opacity: 0.88;
}

.mfp-fade-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.hospitalityEditorialInsert {
    display: flex;
    align-items: center;
    gap: 58px;
    max-width: 1120px;
    margin: 70px auto 20px;
    padding: 0 15px;
}

.hospitalityEditorialInsertImage {
    flex: 0 0 52%;
}

.hospitalityEditorialInsertImage img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.9) contrast(1.04);
}

.hospitalityEditorialCaption {
    margin-top: 14px;
    font-size: 11px !important;
    line-height: 1.6 !important;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.58) !important;
    text-align: center;
}

.hospitalityEditorialInsertText {
    flex: 1;
    text-align: left;
}

.hospitalityEditorialNoteTitle {
    margin: 0 0 22px;
    font-family: Garamond, "EB Garamond", "Cormorant Garamond", Georgia, serif;
    font-size: 29px !important;
    line-height: 1.1;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -1px;
    text-transform: none;
    color: rgba(255,255,255,0.9);
}

.hospitalityEditorialInsertText p {
    margin-bottom: 17px;
    font-size: 14px !important;
    line-height: 1.85 !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.76) !important;
}

@media (max-width: 991px) {
    .hospitalityEditorialInsert {
        gap: 38px;
        max-width: 900px;
    }

    .hospitalityEditorialNoteTitle {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hospitalityEditorialInsert {
        display: block;
        margin: 30px auto 10px !important;
        padding: 0;
    }

    .hospitalityEditorialInsertImage {
        margin-bottom: 34px;
    }

    .hospitalityEditorialCaption {
        text-align: center !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hospitalityEditorialInsertText {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hospitalityEditorialNoteTitle {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .hospitalityEditorialInsertText p {
        font-size: 13px !important;
        line-height: 1.75 !important;
    }
}

#team .rz-team-video-thumb img,#team .teamImageWrapper img {
    opacity: 0;
    transition: opacity 0.55s ease;
}

#team .rz-team-video-thumb img.is-loaded,#team .teamImageWrapper img.is-loaded {
    opacity: 1;
}

#team .container {
    overflow: visible !important;
}

#team #owl-team {
    position: relative;
    overflow: visible !important;
}

#team .owl-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    pointer-events: none;
}

#team .owl-buttons {
    display: block !important;
    width: 100%;
    height: 100%;
}

#team .owl-buttons div {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(110, 110, 110, 0.72);
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 30;
    transform: translateY(-50%);
    transition: background 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
}

#team .owl-buttons div:hover {
    background: rgba(60, 60, 60, 0.9);
}

#team .owl-buttons i {
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

#team .owl-prev {
    left: 16px;
}

#team .owl-next {
    right: 16px;
}

@media (max-width: 991px) {
    #team .owl-prev {
        left: 12px;
    }

    #team .owl-next {
        right: 12px;
    }
}

@media (max-width: 767px) {
    #team .owl-buttons div {
        width: 38px;
        height: 38px;
    }

    #team .owl-buttons i {
        font-size: 20px;
    }
}

#footer.footer-idylease {
    position: relative;
    z-index: 5;
    margin-top: -4px;
}

#text-separator-testimonials .review h4 {
    color: #ffffff !important;
    opacity: 1 !important;
}

@media only screen and (max-width: 767px) {
    #stewardship>.row,#contactContent .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

#text-separator {
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    #text-separator .inclineLine {
        top: -15px !important;
    }

    #featured-works .col-md-3.col-sm-6.col-xs-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #featured-works .featureWrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #featured-works .caption-heading {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    #featured-works .image-16x9,#featured-works .image-16x9 img,#featured-works .galleryImage {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    #stewardship .stewardshipTitle.editorialTitle {
        font-size: 32px !important;
        line-height: 1.25 !important;
        letter-spacing: -1.5px !important;
    }

    #hospitality-quote {
        background-attachment: scroll !important;
        background-size: 150% auto !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 280px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex;
        align-items: center;
    }

    #hospitality-quote .container {
        width: 100%;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #team .container {
        padding-top: 0 !important;
        padding-bottom: 20px !important;
    }

    #team .teamMember {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    #team .teamImageWrapper {
        height: auto !important;
        min-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 32px !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

    #team .team-image {
        width: 100% !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    #team .rz-team-video-thumb {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    #team .memberDescription,#team .memberParagraph {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #team .owl-wrapper-outer,#team .owl-wrapper,#team .owl-item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

.imagesMoveSection {
    position: relative;
    background: #f8f2ea;
    padding: 40px 0 0;
    overflow: hidden;
    z-index: 2;
}

.imagesMoveContainer {
    position: relative;
    overflow: visible !important;
}

.imagesMoveIntro {
    margin-bottom: 22px;
}

.imagesMoveIntro .verticallineSeparator {
    width: 1px;
    height: 38px;
    margin-top: 18px;
    margin-bottom: 20px;
    background: rgba(146,105,56,0.62);
}

.imagesMoveHeaderText {
    max-width: 700px;
    margin: 18px auto 22px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(0,0,0,0.58);
    text-align: center;
}

.imagesMoveDivider {
    position: relative;
    height: 20px;
    margin: 0 0 38px;
    text-align: center;
}

.imagesMoveDivider:before,.imagesMoveDivider:after {
    content: "";
    position: absolute;
    top: 10px;
    width: calc(50% - 34px);
    height: 1px;
    background: rgba(146,105,56,0.36);
}

.imagesMoveDivider:before {
    left: 0;
}

.imagesMoveDivider:after {
    right: 0;
}

.imagesMoveDividerMark {
    display: inline-block;
    position: relative;
    top: -1px;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 20px;
    color: rgba(146,105,56,0.82);
}

.imagesMoveTopRail {
    margin: 0 0 30px;
    text-align: left;
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.62);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

.imagesMoveTopRail a {
    color: rgba(0,0,0,0.66);
    text-decoration: none;
    white-space: nowrap;
}

.imagesMoveTopRail a:hover {
    color: #111;
}

.imagesMoveTopRail span {
    display: inline-block;
    margin: 0 7px;
    color: rgba(146,105,56,0.72);
    white-space: nowrap;
}

.imagesMoveGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 26px;
    align-items: start;
    position: relative;
    overflow: visible;
}

.imagesMoveLeftColumn,.imagesMoveRightColumn {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.imagesMoveRightColumn {
    border-left: 1px solid rgba(0,0,0,0.16);
    padding-left: 18px;
    z-index: 20;
}

.imagesMoveEditorialField {
    position: relative;
    width: 100%;
    aspect-ratio: 760 / 660;
    min-height: 560px;
    overflow: visible;
}

.imagesMoveVisualField {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 2;
}

.imagesMoveArticle {
    position: absolute;
    top: 0;
    left: 0;
    width: 43.4%;
    z-index: 10;
}

.imagesMoveTitle {
    margin: 0 0 14px;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
    font-size: clamp(30px, 3vw, 43px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: rgba(0,0,0,0.88);
    white-space: nowrap;
}

.imagesMoveArticle p {
    max-width: 100%;
    margin: 0;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
    font-size: clamp(12px, 1.08vw, 13.8px);
    line-height: 1.44;
    font-weight: 400;
    color: rgba(0,0,0,0.65);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.imagesMovePhoto {
    position: absolute;
    display: block;
    margin: 0;
    overflow: hidden;
    background: #ddd3c5;
    border: 0;
    box-shadow: none;
    z-index: 3;
}

.imagesMovePhoto a,.imagesMovePhoto img,.imagesMovePhoto picture {
    display: block;
    width: 100%;
    height: 100%;
}

.imagesMovePhoto img {
    object-fit: cover;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.imagesMovePhoto,.imagesMovePhoto:hover,.imagesMovePhoto img,.imagesMovePhoto:hover img {
    transform: none !important;
}

.imagesMovePhoto:hover img {
    filter: saturate(0.90) brightness(0.95);
    opacity: 0.98;
}

.imagesMovePhotoWTC {
    top: 0;
    left: 45.4%;
    width: 54.6%;
    height: 45.5%;
}

.imagesMovePhotoPortrait {
    top: 47.7%;
    left: 0;
    width: 23.7%;
    height: 50.8%;
}

.imagesMovePhotoTea {
    top: 47.7%;
    left: 25.7%;
    width: 28.3%;
    height: 22.0%;
}

.imagesMovePhotoPlaza {
    top: 47.7%;
    left: 55.9%;
    width: 44.1%;
    height: 22.0%;
}

.imagesMovePhotoBourbon {
    top: 72.0%;
    left: 25.7%;
    width: 19.1%;
    height: 26.5%;
}

.imagesMovePhotoOscar {
    top: 72.0%;
    left: 46.7%;
    width: 53.3%;
    height: 26.5%;
}

.imagesMovePhotoWTC img,.imagesMovePhotoPortrait img {
    object-position: center top;
}

.imagesMovePhotoTea img,.imagesMovePhotoPlaza img,.imagesMovePhotoBourbon img,.imagesMovePhotoOscar img {
    object-position: center center;
}

.imagesMoveFormPanel {
    position: relative;
    min-height: 650px;
    padding: 0;
    border: 1px solid rgba(146,105,56,0.34);
    background: #f8f2ea;
    z-index: 30;
}

.imagesMoveFormPanel:before {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border: 1px solid rgba(146,105,56,0.17);
    pointer-events: none;
}

.imagesMoveContactIntro {
    position: relative;
    z-index: 2;
    padding: 26px 28px 8px;
}

.imagesMoveOrnament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 14px;
}

.imagesMoveOrnament span {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(146,105,56,0.58);
}

.imagesMoveOrnament i {
    display: block;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    color: rgba(146,105,56,0.86);
}

.imagesMoveContactIntro h3 {
    margin: 0 0 8px;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
    font-size: 30px;
    line-height: 0.96;
    font-weight: 400;
    color: rgba(0,0,0,0.88);
}

.imagesMoveContactIntro p {
    margin: 0;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(0,0,0,0.65);
}

.imagesMoveThirdPartyForm {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.imagesMoveThirdPartyForm iframe,.imagesMoveThirdPartyForm form,.imagesMoveThirdPartyForm>div,.imagesMoveThirdPartyForm .leform-inline {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.imagesMoveBottomRule {
    clear: both;
    height: 1px;
    margin: 24px 15px 0;
    background: rgba(0,0,0,0.14);
}

@media only screen and (max-width: 1100px) {
    .imagesMoveGrid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
        gap: 22px;
    }

    .imagesMoveRightColumn {
        padding-left: 16px;
    }

    .imagesMoveEditorialField {
        min-height: 520px;
    }

    .imagesMoveFormPanel {
        min-height: 520px;
    }

    .imagesMoveContactIntro {
        padding: 22px 18px 8px;
    }

    .imagesMoveContactIntro h3 {
        font-size: 27px;
    }

    .imagesMoveContactIntro p {
        font-size: 14px;
        line-height: 1.36;
    }
}

@media only screen and (min-width: 700px) and (max-width: 899px) {
    .imagesMoveGrid {
        grid-template-columns: minmax(0, 1fr) 285px;
        gap: 18px;
    }

    .imagesMoveTopRail {
        font-size: 8px;
        letter-spacing: 0.10em;
    }

    .imagesMoveEditorialField {
        min-height: 500px;
    }

    .imagesMoveTitle {
        font-size: 28px;
    }

    .imagesMoveArticle p {
        font-size: 11.5px;
        line-height: 1.36;
    }

    .imagesMoveFormPanel {
        min-height: 500px;
    }

    .imagesMoveContactIntro {
        padding: 20px 16px 8px;
    }

    .imagesMoveContactIntro h3 {
        font-size: 25px;
    }

    .imagesMoveContactIntro p {
        font-size: 13px;
        line-height: 1.32;
    }
}

@media only screen and (max-width: 699px) {
    .imagesMoveSection {
        padding: 6px 0 9px;
        overflow: visible !important;
    }

    .imagesMoveIntro {
        margin-bottom: 28px;
    }

    .imagesMoveHeaderText {
        font-size: 15px;
        line-height: 1.65;
        margin: 16px auto 20px;
        padding: 0 12px;
    }

    .imagesMoveTopRail {
        font-size: 10px;
        letter-spacing: 0.16em;
        line-height: 2;
        margin-bottom: 30px;
        text-align: center;
        white-space: normal;
        overflow: visible;
    }

    .imagesMoveTopRail span {
        margin: 0 7px;
    }

    .imagesMoveGrid {
        display: block;
    }

    .imagesMoveRightColumn {
        border-left: 0;
        padding-left: 15px;
    }

    .imagesMoveEditorialField {
        width: 100%;
        min-height: auto;
        aspect-ratio: auto;
        margin: 0 auto;
    }

    .imagesMoveArticle,.imagesMoveVisualField {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
    }

    .imagesMoveArticle {
        margin: 0 auto 28px;
    }

    .imagesMoveTitle {
        font-size: 29px;
        text-align: center;
        line-height: 1.05;
        letter-spacing: -0.025em;
        white-space: normal;
    }

    .imagesMoveArticle p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.72;
        text-align: left;
    }

    .imagesMovePhoto {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        margin: 0 auto 18px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    }

    .imagesMovePhoto a,.imagesMovePhoto a img,.imagesMovePhoto img,.imagesMovePhoto picture {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .imagesMoveFormPanel {
        margin-top: 30px;
        max-width: none;
        min-height: auto;
        padding: 30px 26px 34px;
    }

    .imagesMoveFormPanel h3,.imagesMoveFormPanel p {
        text-align: center;
    }
}

.mfp-title,.mfp-counter {
    display: none !important;
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    .mfp-bg {
        opacity: 0.94 !important;
    }

    body .mfp-wrap {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder {
        width: 100vw !important;
        max-width: 100vw !important;
        padding-left: var(--rz-window-rail) !important;
        padding-right: var(--rz-window-rail) !important;
        margin: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder .mfp-content {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder .mfp-figure {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder .mfp-figure:after {
        display: none !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder img.mfp-img {
        width: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        max-height: 88vh !important;
        max-height: 88svh !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    body .mfp-wrap .mfp-bottom-bar, body .mfp-wrap .mfp-title, body .mfp-wrap .mfp-counter {
        display: none !important;
    }

    body .mfp-wrap .mfp-close {
        position: fixed !important;
        top: 12px !important;
        right: var(--rz-window-rail) !important;
        width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 36px !important;
        color: #fff !important;
        opacity: 0.95 !important;
        z-index: 99999 !important;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    html.mfp-open,body.mfp-open {
        overflow: hidden !important;
        height: 100% !important;
    }

    .mfp-bg {
        opacity: 0.98 !important;
        background: #000 !important;
    }

    body .mfp-wrap {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        padding-left: var(--rz-window-rail) !important;
        padding-right: var(--rz-window-rail) !important;
        margin: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder .mfp-content {
        width: 100% !important;
        height: 100vh !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder .mfp-figure {
        width: 100% !important;
        height: 100vh !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    body .mfp-wrap .mfp-container.mfp-image-holder img.mfp-img {
        width: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    body .mfp-wrap .mfp-close {
        position: fixed !important;
        top: 6px !important;
        right: var(--rz-window-rail) !important;
        width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 36px !important;
        color: #fff !important;
        opacity: 0.95 !important;
        z-index: 99999 !important;
    }
}

.memoryPlaceSection {
    background: #ffffff;
}

.memoryPlaceSection .container {
    padding-top: 0;
    padding-bottom: 45px;
}

.memoryPlaceInner {
    float: none;
    text-align: center;
}

.memoryPlaceHeader {
    max-width: 820px;
    margin: 0 auto 42px;
}

.memoryPlaceSection .lineSeparator {
    margin-left: auto;
    margin-right: auto;
    background: rgba(0,0,0,0.22);
}

.memoryPlaceTitle {
    margin: 0;
    color: #202020;
}

.memoryPlaceCopy,.memoryPlaceCopyAfter,.memoryPlaceCredo {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.memoryPlaceSection .memoryPlaceCopy>p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    text-align: center;
}

.memoryPlaceLead {
    font-family: "Raleway", sans-serif;
    font-size: 20px !important;
    line-height: 1.62 !important;
    font-weight: 300 !important;
    color: #2b2b2b !important;
}

.memoryLineage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 58px auto 42px;
}

.memoryLineageCard {
    margin: 0;
    min-width: 0;
}

.memoryLineageImage {
    position: relative;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #e8e8e8;
}

.memoryLineageImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(1) contrast(1.03);
    transition: transform 5s ease, filter 0.65s ease;
}

.memoryLineageCard:hover .memoryLineageImage img {
    transform: scale(1.025);
    filter: grayscale(0.86) contrast(1.04);
}

.memoryLineageCaption {
    position: relative;
    min-height: 174px;
    margin-top: 0;
    padding: 25px 20px 23px;
    border-bottom: 1px solid rgba(0,0,0,0.16);
    text-align: center;
}

.memoryLineageDiscipline {
    display: block;
    margin-bottom: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #777;
}

.memoryLineageCaption h3 {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    color: #222;
}

.memoryLineageRule {
    display: block;
    width: 32px;
    height: 1px;
    margin: 17px auto 15px;
    background: rgba(0,0,0,0.30);
}

.memoryLineageCaption p {
    margin: 0 !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    letter-spacing: 1.25px !important;
    text-transform: uppercase;
    color: #666 !important;
}

.memoryPlaceCredo {
    margin-top: 22px;
    padding: 0;
}

.memoryPlaceCredo h3 {
    margin: 0 0 24px;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #232323;
}

.memoryPlaceCredo p {
    max-width: none;
    margin: 0 0 9px !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.58 !important;
    color: #333 !important;
    text-align: center;
}

.memoryPlaceCredo p:last-child {
    margin-bottom: 0 !important;
}

.historyQuote {
    position: relative;
    width: 100%;
    height: 340px;
    min-height: 340px;
    overflow: hidden;
    background: #111;
}

.historyQuoteImage {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    min-width: 0;
    transform: translate3d(0, -50%, 0);
    transform-origin: center center;
    will-change: transform;
    filter: grayscale(1) contrast(1.03);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.historyQuote.rz-parallax-ready .historyQuoteImage {
    opacity: 1;
}

.historyQuoteOverlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.46);
    pointer-events: none;
}

.historyQuoteContainer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 340px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    padding: 22px 24px !important;
}

.historyQuoteContainer>.row {
    width: 100%;
    margin: 0;
}

.historyQuoteText {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    font-family: "Adobe Garamond Pro", "EB Garamond", "Cormorant Garamond", Garamond, Georgia, serif;
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.18;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255,255,255,0.90);
    text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}

.historyQuoteText span {
    display: block;
    margin: 0;
}

.historyQuoteCitation {
    margin-top: 20px;
    text-align: center;
}

.historyQuoteName,.historyQuoteSource {
    margin: 0;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    color: rgba(255,255,255,0.94);
}

.historyQuoteName {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 4px;
}

.historyQuoteSource {
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 1.8px;
}

@media only screen and (max-width: 991px) {
    .memoryLineage {
        gap: 22px;
    }

    .memoryLineageCaption {
        min-height: 184px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .historyQuote,.historyQuoteContainer {
        height: 320px;
        min-height: 320px;
    }
}

@media only screen and (max-width: 767px) {
    .memoryPlaceSection .container {
        padding-top: 78px;
        padding-bottom: 82px;
    }

    .memoryPlaceCredo {
        margin-top: 46px;
    }

    .memoryPlaceCredo h3 {
        margin-bottom: 20px;
        font-size: 23px;
        line-height: 1.34;
    }

    .memoryPlaceCredo p {
        margin-bottom: 14px !important;
        font-size: 16px !important;
        line-height: 1.58 !important;
    }

    .memoryLineage {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 42px;
    }

    .memoryLineageCaption {
        min-height: 0;
    }

    .historyQuote,.historyQuoteContainer {
        height: 300px;
        min-height: 300px;
    }

    .historyQuoteImage {
        left: 50%;
        width: auto;
        height: 100%;
        transform: translate3d(-50%, -50%, 0) !important;
        will-change: auto;
    }

    .historyQuoteContainer {
        padding: 24px 20px !important;
    }

    .historyQuoteText {
        max-width: 94%;
        font-size: 21px;
        line-height: 1.19;
    }

    .historyQuoteCitation {
        margin-top: 18px;
    }

    .historyQuoteName {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .historyQuoteSource {
        font-size: 8px;
        letter-spacing: 1.4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .historyQuoteImage {
        transform: translate3d(0, -50%, 0) !important;
        will-change: auto;
    }
}

.heroPrimaryTitle {
    line-height: 30px;
    margin-bottom: 7px;
}

.legacy-h1 {
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.sectionIntro .legacy-h1 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}

.legacy-h1.minimal {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -6px;
}

.sectionIntro .legacy-h1.minimal {
    margin-top: 40px;
}

.legacy-h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 7px;
}

.legacy-h3.minimal {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 36px;
    letter-spacing: -2.5px;
}

.sectionIntro .sectionSubhead {
    font-size: 28px !important;
    line-height: 1.0 !important;
    font-weight: 300 !important;
    letter-spacing: -1px !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    text-transform: none;
}

.sectionIntro .sectionSubhead small {
    font-size: 85% !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
}

#manuscript .legacy-h1.minimal {
    color: #ffffff;
    margin-top: 0;
}

#rz-video-parallax .legacy-h1,#rz-video-parallax p,#rz-video-parallax .sectionParagraph {
    color: #fff !important;
}

#text-separator-testimonials .legacy-h1,#text-separator-testimonials .sectionIntro .legacy-h1,#text-separator-testimonials .sectionIntro .legacy-h1.minimal {
    color: #ffffff !important;
    opacity: 1 !important;
}

#contactIntro .sectionIntro .legacy-h1 {
    color: #ffffff;
}

.imagesMoveIntro .legacy-h1 {
    margin: 0 0 8px;
    color: rgba(0,0,0,0.86);
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
    font-size: 49px;
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timerWrapper .timerValue {
    position: relative;
    z-index: 3;
    margin: 0 0 7px;
    font-family: "Lato", sans-serif;
    font-size: 42px;
    line-height: 54px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.hospitality-headline {
    font-size: 32px;
    line-height: 50px;
}

#text-separator-testimonials .sectionIntro h2.legacy-h1.minimal {
    margin-top: 40px !important;
}

#text-separator-testimonials {
    background-position: center center !important;
}

.rz-native-parallax {
    --rz-parallax-y: 0px;
    isolation: isolate;
    background-image: none !important;
    background-attachment: scroll !important;
}

#text-separator-timers::after,#rz-video-parallax::after {
    content: "";
    position: absolute;
    top: -12%;
    right: 0;
    bottom: -12%;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate3d(0, var(--rz-parallax-y), 0) scale(1.04);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

#text-separator-timers::after {
    background-image: none;
}

#text-separator-timers.rz-bg-loaded::after {
    background-image: url("../img/films/transmultimedia-monitor.webp");
}

#rz-video-parallax::after {
    background-image: none;
}

#rz-video-parallax.rz-bg-loaded::after {
    background-image: url("../video/video-parallax-bg.webp");
}

.textSepLogo[data-rz-parallax-element] {
    will-change: transform;
    backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .textSepLogo { transition: none; }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    #text-separator-timers::after,#rz-video-parallax::after {
        top: 0;
        bottom: 0;
        transform: none !important;
        will-change: auto;
    }

    .textSepLogo[data-rz-parallax-element] {
        transform: none !important;
        will-change: auto;
    }
}

#hospitality-quote .rz-hospitality-parallax-bg {
    position: absolute;
    top: -18%;
    right: 0;
    bottom: -18%;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate3d(0, 0, 0) scale(1.06);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    #hospitality-quote .rz-hospitality-parallax-bg {
        top: 0;
        bottom: 0;
        transform: translate3d(0, 0, 0) scale(1.02) !important;
        will-change: auto;
    }
}

#hospitality-quote.rz-bg-loaded .rz-hospitality-parallax-bg {
    background-image: url("../img/hospitality/the-rainbow-room.webp");
}

#text-separator-testimonials.rz-bg-loaded {
    background-image: url("../img/sergeant-york-still.webp");
}

#contactIntro.rz-bg-loaded {
    background-image: url("../img/cooper-hemingway.webp");
}

#footer.footer-idylease.rz-bg-loaded::before {
    background-image: url("../img/idylease/footer.webp");
}

@media only screen and (max-width: 767px) {
    #hospitality-quote {
        background-color: #111;
    }

    #hospitality-quote .rz-hospitality-parallax-bg {
        background-image: none !important;
    }

    #hospitality-quote.rz-bg-loaded .rz-hospitality-parallax-bg {
        background-image: url("../img/hospitality/the-rainbow-room.webp") !important;
    }

    #rz-video-parallax {
        background-color: #111;
    }

    #rz-video-parallax::after {
        background-image: none !important;
    }

    #rz-video-parallax.rz-bg-loaded::after {
        background-image: url("../video/video-parallax-bg.webp") !important;
    }

    #text-separator-testimonials {
        background-image: none !important;
    }

    #text-separator-testimonials.rz-bg-loaded {
        background-image: url("../img/sergeant-york-still.webp") !important;
    }

    #footer.footer-idylease::before {
        background-image: none !important;
    }

    #footer.footer-idylease.rz-bg-loaded::before {
        background-image: url("../img/idylease/footer.webp") !important;
    }
}

h3.rz-h5-visual {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 7px;
}

h3.rz-h5-visual.minimal {
    font-size: 22px;
    letter-spacing: -1px;
}

h3.rz-h5-visual small {
    font-weight: 400;
    font-size: 22px;
    line-height: inherit;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
}

.sectionIntro h3.rz-h5-visual {
    margin-top: 10px;
}

#manuscript h3.rz-h5-visual,#manuscript h3.rz-h5-visual small {
    color: #ffffff;
}

#contactIntro .sectionIntro h3.rz-h5-visual,#contactIntro .sectionIntro h3.rz-h5-visual small {
    color: #ffffff;
}

#text-separator-testimonials .sectionIntro h3.rz-h5-visual,#text-separator-testimonials .sectionIntro h3.rz-h5-visual small {
    color: #ffffff !important;
    opacity: 1 !important;
}

.imagesMoveIntro h3.rz-h5-visual {
    margin: 0;
}

.imagesMoveIntro h3.rz-h5-visual small {
    color: rgba(0,0,0,0.48);
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.22em;
    font-weight: 500;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    #text-separator-testimonials .sectionIntro h3.rz-h5-visual {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }
}


/* --- 4. RESPONSIVE ------------------------------------------------------- */
/* ==================================================
   RichardZampella.com — responsive-clean.css
   Audited responsive rules for the current homepage.
   Legacy preloader and unused template selectors removed.
================================================== */

/* Medium tablets / compact nav */
@media (max-width: 900px) {
    .navbar-nav > li > a {
        letter-spacing: 1px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablets and below */
@media (max-width: 768px) {
    .navbar-fixed-top .navbar-collapse {
        max-height: 100%;
    }

    .memberDescription {
        text-align: center;
    }

    .memberParagraph {
        padding-right: 0;
    }

    #text-separator-testimonials h2 {
        font-size: 20px;
    }

    #team .container {
        padding-bottom: 200px;
    }
}

/* Bootstrap mobile nav */
@media (max-width: 767px) {
    .navbar-default .navbar-collapse {
        border-color: #e7e7e7;
        background: rgba(0, 0, 0, 0.6);
        text-align: center;
    }

    .affix.navbar-default .navbar-collapse {
        border-color: #e7e7e7;
        background: rgba(255, 255, 255, 0.6);
        text-align: center;
    }
}

/* Phones */
@media screen and (max-width: 640px) {
    h1 {
        font-size: 36px;
        line-height: 40px;
    }

    #intro h1 {
        letter-spacing: 1px;
    }

    h2 {
        font-size: 24px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }
}

@media screen and (max-width: 480px) {
    section .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 24px;
        letter-spacing: 0;
    }

    h4 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    #intro p {
        font-size: 12px;
    }

    .navbar-default {
        padding-left: 0;
        padding-right: 0;
    }

    .inclineLine {
        position: absolute;
        top: 0;
        width: 50px;
        height: 60px;
        left: 42%;
    }

    h1.minimal,
    h1.minimal small {
        font-size: 36px;
        letter-spacing: -3px;
        line-height: 40px;
    }

    h2.minimal,
    h2.minimal small {
        font-size: 30px;
        letter-spacing: -2px;
        line-height: 36px;
    }

    h3.minimal,
    h3.minimal small {
        font-size: 26px;
        letter-spacing: -2px;
        line-height: 30px;
    }

    h4.minimal,
    h4.minimal small {
        font-size: 22px;
        letter-spacing: 0;
        line-height: 26px;
    }
}

/* Memory, Place, and Stewardship / History Quote */
@media (max-width: 991px) {
    .memoryLineage {
        gap: 22px;
    }

    .memoryLineageCaption {
        min-height: 190px;
        padding-left: 20px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .memoryPlaceSection .container {
        padding-top: 66px !important;
        padding-bottom: 72px !important;
    }

    .memoryPlaceInner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .memoryPlaceHeader {
        margin-bottom: 30px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .memoryPlaceTitle {
        margin-bottom: 26px;
        font-size: 34px !important;
        line-height: 1.05 !important;
        letter-spacing: -2px !important;
    }

    .memoryPlaceCopy {
        padding-left: 22px;
        padding-right: 22px;
    }

    .memoryPlaceSection p {
        font-size: 14px;
        line-height: 1.78;
        margin-bottom: 18px;
    }

    .memoryPlaceSection .memoryPlaceCopy > p {
        font-size: 14px;
        line-height: 1.82;
        margin-bottom: 19px;
    }

    .memoryPlaceLead {
        font-size: 18px !important;
        line-height: 1.55 !important;
    }

    .memoryLineage {
        grid-template-columns: 1fr;
        gap: 42px;
        margin: 44px 22px 52px;
    }

    .memoryLineageImage {
        aspect-ratio: 1.55 / 1;
    }

    .memoryLineageCaption {
        min-height: 0;
        padding: 21px 18px 28px 20px;
    }

    .memoryLineageCaption h3 {
        font-size: 18px;
    }

    .memoryPlaceCredo {
        margin-top: 35px;
        padding-top: 30px;
    }

    .memoryPlaceCredo p {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .historyQuote,
    .historyQuoteContainer {
        min-height: 72svh;
    }

    .historyQuoteContainer {
        padding: 64px 20px !important;
    }

    .historyQuoteText {
        font-size: 27px;
        line-height: 1.34;
        letter-spacing: -0.015em;
    }
}

@media (max-width: 420px) {
    .historyQuoteText {
        font-size: 23px;
    }
}

/* Semantic heading compatibility — responsive */
@media screen and (max-width: 640px) {
    .legacy-h1,
    .timerWrapper .timerValue {
        font-size: 36px;
        line-height: 40px;
    }
}

@media screen and (max-width: 600px) {
    .legacy-h1,
    .timerWrapper .timerValue {
        font-size: 36px;
        letter-spacing: 3px;
    }
}

@media screen and (max-width: 480px) {
    .legacy-h1,
    .timerWrapper .timerValue {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .legacy-h1.minimal {
        font-size: 36px;
        letter-spacing: -3px;
        line-height: 40px;
    }

    .legacy-h3.minimal {
        font-size: 26px;
        letter-spacing: -2px;
        line-height: 30px;
    }

    .imagesMoveIntro .legacy-h1 {
        font-size: 38px;
        letter-spacing: 0.035em;
        line-height: 1.08;
    }
}

@media only screen and (max-width: 767px) {
    #text-separator-testimonials .sectionIntro .legacy-h1 {
        margin-top: 0 !important;
        margin-bottom: 6px !important;
    }
}


/* ==========================================================
   NATIVE SCROLL REVEALS — clean architecture baseline
   Replaces legacy ScrollReveal runtime without layout reads.
========================================================== */
[data-scroll-reveal].rz-reveal-managed {
    opacity: 0;
    transform: translate3d(var(--rz-reveal-x, 0px), var(--rz-reveal-y, 12px), 0);
    transition-property: opacity, transform;
    transition-duration: var(--rz-reveal-duration, .9s);
    transition-delay: var(--rz-reveal-delay, 0s);
    transition-timing-function: cubic-bezier(.22,.61,.36,1);
}

[data-scroll-reveal].rz-reveal-managed.rz-reveal-visible {
    opacity: 1;
    transform: translate3d(0,0,0);
}

@media (prefers-reduced-motion: reduce) {
    [data-scroll-reveal].rz-reveal-managed {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
