/* TEMP: Hide WP admin bar while building */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

:root {
    --font-heading: ivypresto-display, serif;
    --font-body: stratos-lights, sans-serif;
    --font-accent: stolzl, sans-serif;
	
	--border-colour: #D9D2C6;
}

body {
    margin: 0;
    padding: 0;
    color: #2d1517;
    background: #f7f5ef;
    font-family: var(--font-body);
    font-weight: 400;
}
body,
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
* > p:first-of-type {
    margin-top: 0;
}
* > p:last-of-type {
    margin-bottom: 0;
}
p {
    font-size: 16px;
    line-height: 22px;
}
p strong, p b {
	font-weight: 400;
    font-family: 'stratos';
}
a {
    text-decoration: none;
    color: #232323;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}
h1 {
    font-family: var(--font-heading);
}
h2 {
    font-family: var(--font-heading);
}
em,
i {
    font-style: italic;
    font-weight: 100;
}
.site-container {
    overflow-x: clip;
}

/* Styled Titles */

.styled-title {
    font-family: var(--font-heading);
    font-weight: 300;
}

.styled-title em,
.styled-title i {
    font-style: italic;
    font-weight: 100;
}

.styled-title strong,
.styled-title b {
    display: inline;
    color: var(--title-highlight-text-colour, inherit);;
    font-weight: inherit;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 34%,
        var(--title-highlight-colour, #b12d3a) 34%,
        var(--title-highlight-colour, #b12d3a) 88%,
        transparent 88%,
        transparent 100%
    );
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0 0.06em;
}

/* Highlight colour utilities */

.highlight-neutral {
    --title-highlight-colour: #D9D2C6;
    --title-highlight-text-colour: inherit;
}

.highlight-blue {
    --title-highlight-colour: #D2E1EF;
    --title-highlight-text-colour: inherit;
}

.highlight-purple {
    --title-highlight-colour: #D0D0EC;
    --title-highlight-text-colour: inherit;
}

.highlight-gold {
    --title-highlight-colour: #D0C79C;
    --title-highlight-text-colour: inherit;
}

.highlight-red {
    --title-highlight-colour: #B4303C;
    --title-highlight-text-colour: #F9F6F0;
}

.highlight-green {
    --title-highlight-colour: #9C8C3C;
    --title-highlight-text-colour: #F9F6F0;
}

.highlight-burgundy {
    --title-highlight-colour: #6B2649;
    --title-highlight-text-colour: #F9F6F0;
}


/* Buttons */

.button,
a.button,
button.button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 260px;
    min-height: 44px;
    padding: 12px 28px;
    border: 1px solid #b79b55;
    border-radius: 999px;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.button:hover,
a.button:hover,
button.button:hover,
input[type="submit"]:hover {
    background: #5b1f32;
    color: #ffffff;
	border-color: #5b1f32;
}

.button--light {
    background: #ffffff;
    border-color: #ffffff;
    color: #2d1517;
}

.button--light:hover {
    background: transparent;
    color: #ffffff;
}

.button--blue,
a.button--blue {
    background: #dbe8f3;
    border-color: #dbe8f3;
    color: #2d1517;
}

.button--blue:hover,
a.button--blue:hover {
    background: transparent;
    border-color: #dbe8f3;
    color: #ffffff;
}

.button--outline {
    background: transparent;
    border-color: #5b1f32;
    color: #5b1f32;
}

.button--outline:hover {
    background: #5b1f32;
    color: #ffffff;
}

.button--small {
    min-width: 0;
    min-height: 38px;
    padding: 9px 22px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.5px;
}

@media only screen and (max-width: 767px) {
    .button,
    a.button,
    button.button,
    input[type="submit"] {
        min-width: 220px;
        padding: 11px 24px;
        font-size: 12px;
        letter-spacing: 2.5px;
    }
}

/* Header */

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #f7f5ef;
}

body.header-overlap .site-header,
body.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.announcement-bar {
    background: #b12d3a;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
}

.announcement-bar p,
.announcement-bar a {
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 3px;
	font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}

.site-header .inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid #d8d0bf;
    padding: 0 36px;
    background: #f7f5ef;
}

.logo__image {
    display: block;
    width: 100%;
    height: auto;
}

.logo__image--mobile {
    display: none !important;
}

.site-header .logo {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
	z-index: 5;
}

.site-header .logo a {
    display: block;
     width: clamp(120px, 8vw, 176px);
    margin: 0 auto;
    line-height: 0;
}


.site-header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.main-menu ul {
    display: flex;
    align-items: center;
    gap: 54px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu a,
.home-menu-toggle span {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-menu-left {
    grid-column: 1;
    justify-self: start;
}

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-menu-right ul {
    gap: 44px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 41px;
    padding: 8px 26px;
    border-radius: 999px;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.header-button--primary {
    background: transparent;
    border: 1px solid #b79b55;
    color: #2d1517;
	transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.header-button--secondary {
    background: transparent;
    border: 1px solid #b79b55;
    color: #2d1517;
	transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.header-button--primary:hover, .header-button--secondary:hover {
	background: #5b1f32;
	border: 1px solid #5b1f32;
	color: #ffffff;
}

/* Home header variation */

.site-header--home .inner {
    grid-template-columns: auto 1fr auto;
}

.site-header--home .home-menu-toggle {
    grid-column: 1;
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.site-header--home .logo {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 42%);
    z-index: 20;
    text-align: center;
    pointer-events: auto;
}

.site-header--home .logo a {
    display: block;
    width: clamp(320px, 34vw, 620px);
    line-height: 0;
}

.site-header--home .logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-header--home .header-actions {
    grid-column: 3;
}

/* Mobile menu */

.mobile-menu-toggle {
    display: none;
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    width: 42px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: #2d1517;
    margin: 7px 0;
}

.mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(45, 21, 23, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel__inner {
    width: min(430px, 88vw);
    height: 100%;
    background: #f7f5ef;
    padding: 44px 36px;
    transform: translateX(-100%);
    transition: 0.3s ease;
}

.mobile-menu-panel.is-open .mobile-menu-panel__inner {
    transform: translateX(0);
}

.mobile-menu-close {
    appearance: none;
    border: none;
    background: transparent;
    width: 36px;
    height: 36px;
    padding: 0;
    position: relative;
    cursor: pointer;
    margin: 0 0 48px;
}

.mobile-menu-close span {
    position: absolute;
    left: 0;
    top: 17px;
    width: 36px;
    height: 2px;
    background: #2d1517;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

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

.mobile-menu li {
    margin: 0 0 34px;
}

.mobile-menu a {
    color: #2d1517;
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 44px;
}

.mobile-menu-buttons {
    margin: 56px 0 0;
}

.mobile-menu-buttons .header-button {
    width: 100%;
    margin: 0 0 16px;
}

body.mobile-menu-is-open {
    overflow: hidden;
}

/* Responsive */

@media only screen and (max-width: 1180px) {
    .site-header .logo,
    .site-header--home .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        filter: none !important;
    }

    .site-header--home .logo__image--home {
        display: none;
    }

    .site-header--home .logo__image--mobile {
        display: block !important;
    }

    .site-header .logo a,
    .site-header--home .logo a {
        width: clamp(120px, 34vw, 170px);
    }
}

@media only screen and (max-width: 1100px) {
    .main-menu ul {
        gap: 32px;
    }

    .main-menu a,
    .home-menu-toggle span {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .header-button {
        min-width: 160px;
        font-size: 13px;
        letter-spacing: 4px;
    }
}

@media only screen and (max-width: 900px) {
    .site-header .inner {
        display: flex;
        justify-content: space-between;
        min-height: 76px;
        padding: 0 24px;
    }

    .main-menu,
    .home-menu-toggle,
    .header-actions {
        display: none;
    }

    .site-header .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .site-header .logo a,
    .site-header--home .logo a {
        width: clamp(120px, 34vw, 160px);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .announcement-bar p,
    .announcement-bar a {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 3px;
    }
	
	.site-header--home .logo img {
    width: 75%;
        padding-top: 20px;
        padding-bottom: 20px;
}
	
	.logo__image.logo__image--home {
    display: none !important;
}
	
}

@media only screen and (max-width: 600px) {
    .announcement-bar {
        padding: 8px 16px;
    }

    .site-header .inner {
        padding: 0 18px;
    }

    .site-header .logo a,
    .site-header--home .logo a {
        width: 145px;
    }

    .mobile-menu-panel__inner {
        width: 100%;
        padding: 38px 28px;
    }
}

/* Footer Newsletter */

.footer-newsletter {
    display: grid;
    grid-template-columns: 40% 60%;
    background: #f7f5ef;
    border-top: 1px solid #d8d0bf;
}

.footer-newsletter__content {
    background: #dbe8f3;
    padding: 64px 7vw 58px 5vw;
}

.footer-newsletter__content h2 {
	position: relative;
    display: inline-block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 0.9;
    margin: 0 0 20px;
	z-index: 1;
}

.footer-newsletter__content h2::before {
    content: "";
    position: absolute;
    left: -0.08em;
    right: -0.08em;
    top: 0.15em;
    bottom: 0;
    background: #b12d3a;
    z-index: -1;
}

.footer-newsletter__text {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    max-width: 520px;
}

.footer-newsletter__text strong {
    font-weight: 500;
}

.footer-newsletter__form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5vw 58px;
}

/* Generic form styling for newsletter area */

.footer-newsletter__form form {
    width: 100%;
}

.footer-newsletter__form input[type="text"],
.footer-newsletter__form input[type="email"] {
    border: none;
    border-bottom: 1px solid #b12d3a;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 0;
    border-radius: 0;
}

.footer-newsletter__form input::placeholder {
    color: #b12d3a;
    opacity: 1;
}

.footer-newsletter__form input[type="submit"],
.footer-newsletter__form button[type="submit"] {
    display: block;
    min-width: 240px;
    border: 1px solid #5b1f32;
    border-radius: 999px;
    background: #5b1f32;
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 26px;
    margin: 34px auto 0;
    cursor: pointer;
}

/* Footer Main */

.site-footer {
    background: #5b1f32;
    color: #ffffff;
    padding: 82px 0 88px;
}

.site-footer__inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
}

.site-footer__column h4 {
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 28px;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.site-footer__nav a {
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-footer__column--left {
    text-align: left;
}

.site-footer__column--logo {
    text-align: center;
}

.site-footer__column--logo img {
    display: block;
    width: clamp(120px, 8vw, 210px);
    height: auto;
    margin: 0 auto;
}

.site-footer__column--right {
    text-align: right;
}

.site-footer__column--right .site-footer__nav {
    align-items: flex-end;
}

/* Copyright */

.footer-copyright {
    background: #f7f5ef;
    padding: 22px 20px;
    text-align: center;
}

.footer-copyright p,
.footer-copyright a {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-copyright p {
    margin: 0;
}

/* Footer Responsive */

@media only screen and (max-width: 900px) {
    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-newsletter__content,
    .footer-newsletter__form {
        padding: 48px 28px;
    }

    .footer-newsletter__content h2 {
        font-size: 42px;
        line-height: 42px;
    }

    .site-footer {
        padding: 60px 0;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .site-footer__column--left,
    .site-footer__column--right {
        text-align: center;
    }

    .site-footer__column--right .site-footer__nav {
        align-items: center;
    }

    .site-footer__column--logo {
        order: -1;
    }
}




.page-content > * {
    max-width: 800px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.page-content .alignfull {
    max-width: none;
    width: auto;
}
.page-content .alignwide {
    max-width: 1142px;
    margin-left: auto;
    margin-right: auto;
}
/* Header Full Image */

.header-full-image {
    position: relative;
    min-height: clamp(620px, 90vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2d1517;
}

.header-full-image__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.header-full-image__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-full-image.show-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 21, 23, 0.35);
    z-index: 2;
}

.header-full-image__content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 190px 0 80px;
    text-align: center;
    color: #ffffff;
}

.header-full-image__subtitle {
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 34px;
}

.header-full-image__subtitle p {
    margin: 0;
}

.header-full-image__title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(58px, 5.5vw, 128px);
    line-height: 0.95;
    max-width: 1200px;
    margin: 0 auto 34px;
}

.header-full-image__title p {
    margin: 0;
}

.header-full-image__title em,
.header-full-image__title i {
    font-style: italic;
    font-weight: 100;
}

.header-full-image__title strong,
.header-full-image__title b {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: inherit;
    z-index: 1;
}

.header-full-image__title strong::before,
.header-full-image__title b::before {
    content: "";
    position: absolute;
    left: -0.04em;
    right: -0.04em;
    top: 0.28em;
    bottom: 0;
    background: #9f9b33;
    z-index: -1;
}

.header-full-image__text {
    max-width: 560px;
    margin: 0 auto;
    color: #ffffff;
}

.header-full-image__text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.header-full-image__button {
    margin: 30px auto 0;
}

@media only screen and (max-width: 900px) {
 .header-full-image {
        min-height: clamp(600px, 76vh, 760px);
    }

    .header-full-image__content {
        padding: 150px 0 70px;
    }

    .header-full-image__subtitle {
        font-size: 13px;
        line-height: 18px;
        letter-spacing: 4px;
        margin: 0 0 24px;
    }

    .header-full-image__title {
        font-size: clamp(46px, 13vw, 72px);
        margin-bottom: 26px;
    }

    .header-full-image__text p {
        font-size: 17px;
        line-height: 25px;
    }

    .header-full-image__button {
        min-width: 220px;
    }
}


/* Logo Carousel */

.logo-carousel {
    background: #f7f5ef;
    padding: 28px 0 34px;
    overflow: hidden;
	border-top: 1px solid #d8d0bf;
}

.logo-carousel__inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.logo-carousel__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 auto 30px;
}

.logo-carousel__title strong,
.logo-carousel__title b {
    font-weight: 500;
}

.logo-carousel__title strong::before,
.logo-carousel__title b::before {
    display: none;
}

.logo-carousel__track {
    width: 100%;
    margin: 0;
}

.logo-carousel__slide {
    padding: 0 42px;
}

.logo-carousel__logo {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-carousel__logo img {
    display: block;
    max-width: 260px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Slick fixes */

.logo-carousel .slick-track {
    display: flex;
    align-items: center;
}

.logo-carousel .slick-slide {
    height: auto;
}

.logo-carousel .slick-slide > div {
    height: 100%;
}

@media only screen and (max-width: 900px) {
    .logo-carousel {
        padding: 24px 0 28px;
    }

    .logo-carousel__title {
        width: 90%;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .logo-carousel__slide {
        padding: 0 28px;
    }

    .logo-carousel__logo img {
        max-width: 190px;
        max-height: 48px;
    }
}

@media only screen and (max-width: 600px) {
    .logo-carousel__slide {
        padding: 0 22px;
    }

    .logo-carousel__logo img {
        max-width: 160px;
        max-height: 42px;
    }
}

/* Text/Image Striped Background */

.text-image-striped {
    --title-highlight-colour: #d8d6ef;
    --title-highlight-text-colour: #2d1517;

    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 610px;
    background: #f7f5ef;
    border-top: 1px solid #d8d0bf;
    border-bottom: none;
}

.text-image-striped.highlight-blue {
    --title-highlight-colour: #d8d6ef;
}

.text-image-striped.highlight-green {
    --title-highlight-colour: #9f9b33;
    --title-highlight-text-colour: #ffffff;
}

.text-image-striped.highlight-red {
    --title-highlight-colour: #b12d3a;
    --title-highlight-text-colour: #ffffff;
}

.text-image-striped.highlight-burgundy {
    --title-highlight-colour: #5b1f32;
    --title-highlight-text-colour: #ffffff;
}

.text-image-striped__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 7vw 90px 5vw;
}

.text-image-striped__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 65px;
    line-height: 0.92;
    max-width: 660px;
    margin: 0 0 44px;
}

.text-image-striped__text {
    color: #2d1517;
    max-width: 590px;
}

.text-image-striped__text p {
    font-family: var(--font-body);
    font-weight: 400;
    margin: 0 0 24px;
}

.text-image-striped__text p:last-child {
    margin-bottom: 0;
}

.text-image-striped__text strong,
.text-image-striped__text b {
    font-weight: 500;
}

.text-image-striped__button {
    margin-top: 34px;
}

.text-image-striped__image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 7vw;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(216, 208, 191, 0.26) 0,
            rgba(216, 208, 191, 0.26) 18px,
            transparent 18px,
            transparent 36px
        );
}

.text-image-striped__image {
    position: relative;
    z-index: 1;
    width: min(95%, 620px);
    aspect-ratio: 1.08 / 1;
    line-height: 0;
    overflow: hidden;
}

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

.text-image-striped__badge {
    position: absolute;
    z-index: 2;
    top: 22%;
    right: 7%;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #7a1f55;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    transform: rotate(12deg);
}

/* Image left option */

.text-image-striped.image-left .text-image-striped__image-wrap {
    order: 1;
}

.text-image-striped.image-left .text-image-striped__content {
    order: 2;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .text-image-striped {
        grid-template-columns: 1fr;
    }

    .text-image-striped.image-left .text-image-striped__image-wrap,
    .text-image-striped.image-left .text-image-striped__content {
        order: initial;
    }

    .text-image-striped__content {
        padding: 64px 28px 54px;
    }

    .text-image-striped__image-wrap {
        padding: 64px 28px;
    }

    .text-image-striped__title {
        font-size: 52px;
        line-height: 0.95;
        margin-bottom: 34px;
    }

    .text-image-striped__image {
        border-width: 12px;
    }

    .text-image-striped__badge {
        width: 118px;
        height: 118px;
        top: 34px;
        right: 24px;
        font-size: 12px;
        line-height: 17px;
        letter-spacing: 3px;
    }
}

@media only screen and (max-width: 600px) {
    .text-image-striped__title {
        font-size: 44px;
    }

    .text-image-striped__text p {
        font-size: 16px;
        line-height: 24px;
    }

    .text-image-striped__image-wrap {
        padding: 48px 20px;
    }

    .text-image-striped__badge {
        width: 96px;
        height: 96px;
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 2px;
    }
}

/* Three Features */

.three-features {
    background: #f7f5ef;
    border-top: 1px solid #d8d0bf;
    border-bottom: none;
}

.three-features__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.three-features__item {
    min-height: 300px;
    padding: 72px 5vw 68px;
    text-align: center;
    border-right: 1px solid #d8d0bf;
}

.three-features__item:last-child {
    border-right: none;
}

.three-features__icon {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
}

.three-features__icon img {
    display: block;
    width: auto;
    max-width: 44px;
    max-height: 42px;
}

.three-features__title {
    color: #5b1f32;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 520px;
    margin: 0 auto 16px;
}

.three-features__text {
    max-width: 520px;
    margin: 0 auto;
    color: #2d1517;
}

.three-features__text p {
    margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .three-features__inner {
        grid-template-columns: 1fr;
    }

    .three-features__item {
        min-height: 0;
        padding: 56px 28px;
        border-right: none;
        border-bottom: 1px solid #d8d0bf;
    }

    .three-features__item:last-child {
        border-bottom: none;
    }

}

/* Content Carousel */

.content-carousel {
    --title-highlight-colour: #c8c28f;

    background: #f7f5ef;
    border-top: 1px solid #d8d0bf;
    padding: 92px 0 96px;
    overflow: hidden;
}

.content-carousel__header {
    width: 90%;
    max-width: 860px;
    margin: 0 auto 76px;
    text-align: center;
    position: relative;
}

.content-carousel__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.content-carousel__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    max-width: 760px;
    margin: 0 auto;
}

.content-carousel--member-events .content-carousel__post-title, .content-carousel--documents .content-carousel__post-title {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 320px;
}

.content-carousel__stars {
    position: absolute;
    top: -10px;
    right: -70px;
    width: 150px;
    pointer-events: none;
}

.content-carousel__stars img {
    display: block;
    width: 100%;
    height: auto;
}

.content-carousel__track {
    margin: 0 -18px;
}

.content-carousel__slide {
    padding: 0 36px;
}

.content-carousel__card {
    display: block;
    text-align: center;
    color: #2d1517;
}

.content-carousel__image {
    line-height: 0;
    margin: 0 0 20px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
	border-radius: 24px;
}

.content-carousel--post .content-carousel__image {
    margin-bottom: -15px;
}

.content-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-carousel__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    min-height: 34px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #b12d3a;
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: -66px auto 28px;
    position: relative;
    z-index: 2;
}

.content-carousel__label--career {
    background: #b12d3a;
    color: #ffffff;
}

.content-carousel__label--review {
    background: #d8d6ef;
    color: #2d1517;
}

.content-carousel__label--events {
    background: #9f9b33;
    color: #ffffff;
}

.content-carousel__label--resources {
    background: #dbe8f3;
    color: #2d1517;
}

.content-carousel__label--podcast {
    background: #5b1f32;
    color: #ffffff;
}

.content-carousel__post-title {
    color: #2d1517;
    font-family: Stratos;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    max-width: 380px;
    margin: 0 auto;
}

.content-carousel__arrows {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 52px auto 0;
}

.content-carousel__arrows .slick-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #5b1f32;
    border-radius: 50%;
    background: transparent;
    color: #5b1f32;
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.content-carousel__arrows .slick-arrow::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-top: 1px solid #5b1f32;
    border-right: 1px solid #5b1f32;
    top: 50%;
    left: 50%;
}

.content-carousel__arrows .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.content-carousel__arrows .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* ==========================================================================
   Content Carousel Event Button
   ========================================================================== */

.content-carousel__card {
    height: 100%;
}

.content-carousel__card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.content-carousel__event-button {
    margin: 24px auto 0;
    min-width: 220px;
    min-height: 38px;
    padding: 9px 22px;
    font-size: 11px;
    line-height: 15px;
}

@media only screen and (max-width: 1000px) {
    .content-carousel {
        padding: 70px 0 76px;
    }

    .content-carousel__header {
        margin-bottom: 52px;
    }

    .content-carousel__title {
        font-size: 48px;
    }

    .content-carousel__stars {
        width: 104px;
        right: -20px;
        top: -28px;
    }

    .content-carousel__slide {
        padding: 0 20px;
    }

    .content-carousel__post-title {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 600px) {
    .content-carousel {
        padding: 56px 0 64px;
    }

    .content-carousel__title {
        font-size: 42px;
    }

    .content-carousel__stars {
        position: relative;
        top: auto;
        right: auto;
        width: 90px;
        margin: 22px auto 0;
    }

    .content-carousel__slide {
        padding: 0 14px;
    }

    .content-carousel__label {
        margin-bottom: 24px;
    }
}

/* Simple Image/Text */

.simple-image-text {
    --title-highlight-colour: #d8d6ef;

    background: #f7f5ef;
    border-top: 1px solid #d8d0bf;
    padding: 112px 0 118px;
}

.simple-image-text.highlight-blue {
    --title-highlight-colour: #d8d6ef;
}

.simple-image-text.highlight-green {
    --title-highlight-colour: #c8c28f;
}

.simple-image-text.highlight-red {
    --title-highlight-colour: #b12d3a;
}

.simple-image-text.highlight-burgundy {
    --title-highlight-colour: #5b1f32;
}

.simple-image-text.highlight-red .styled-title strong,
.simple-image-text.highlight-red .styled-title b,
.simple-image-text.highlight-burgundy .styled-title strong,
.simple-image-text.highlight-burgundy .styled-title b {
    color: #ffffff;
}

.simple-image-text__inner {
    width: 86%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 110px;
    align-items: stretch;
}

.simple-image-text__content {
    max-width: 620px;
}

.simple-image-text__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 60px;
    line-height: 0.96;
    margin: 0 0 44px;
}

.simple-image-text__text {
    color: #2d1517;
    max-width: 560px;
}

.simple-image-text__text p {
    margin-bottom: 22px;
}

.simple-image-text__text strong,
.simple-image-text__text b {
    font-weight: 500;
}

.simple-image-text__button {
    margin-top: 20px;
}

.simple-image-text__image-wrap {
    width: 100%;
	height: 100%;
    display: flex;
}

.simple-image-text__image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    line-height: 0;
    overflow: hidden;
    border-radius: 28px;
	max-height: 520px;
}

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

/* Image left option */

.simple-image-text.image-left .simple-image-text__content {
    order: 2;
}

.simple-image-text.image-left .simple-image-text__image-wrap {
    order: 1;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .simple-image-text {
        padding: 72px 0 78px;
    }

    .simple-image-text__inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .simple-image-text.image-left .simple-image-text__content,
    .simple-image-text.image-left .simple-image-text__image-wrap {
        order: initial;
    }

    .simple-image-text__content {
        max-width: 680px;
    }

    .simple-image-text__title {
        font-size: 50px;
        line-height: 0.98;
        margin-bottom: 34px;
    }

    .simple-image-text__image {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 600px) {
    .simple-image-text {
        padding: 58px 0 64px;
    }

    .simple-image-text__inner {
        width: 88%;
        gap: 42px;
    }

    .simple-image-text__title {
        font-size: 42px;
    }

    .simple-image-text__image {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }
}

/* Header Split Image/Text */

.header-split {
    --header-split-bg: #F9F6F0;
    --header-split-text: #2d1517;
    --header-split-subtitle: #2d1517;
    --title-highlight-colour: #D0D0EC;
    --title-highlight-text-colour: inherit;
    --header-split-button-bg: #6B2649;
    --header-split-button-border: #6B2649;
    --header-split-button-text: #F9F6F0;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #6B2649;

    position: relative;
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #2d1517;
}

.header-split--neutral {
    --header-split-bg: #F9F6F0;
    --header-split-text: #2d1517;
    --header-split-subtitle: #2d1517;
    --title-highlight-colour: #D0D0EC;
    --title-highlight-text-colour: inherit;
    --header-split-button-bg: #B4303C;
    --header-split-button-border: #B4303C;
    --header-split-button-text: #F9F6F0;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #B4303C;
}

.header-split--light {
    --header-split-bg: #EEEDE5;
    --header-split-text: #2d1517;
    --header-split-subtitle: #2d1517;
    --title-highlight-colour: #CDB16A;
    --title-highlight-text-colour: inherit;
    --header-split-button-bg: #D0D0EC;
    --header-split-button-border: #D0D0EC;
    --header-split-button-text: #6B2649;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #6B2649;
}

.header-split--green {
    --header-split-bg: #9C8C3C;
    --header-split-text: #F9F6F0;
    --header-split-subtitle: #F9F6F0;
    --title-highlight-colour: #6B2649;
    --title-highlight-text-colour: #F9F6F0;
    --header-split-button-bg: #D2E1EF;
    --header-split-button-border: #D2E1EF;
    --header-split-button-text: #6B2649;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #F9F6F0;
}

.header-split--burgundy {
    --header-split-bg: #6B2649;
    --header-split-text: #F9F6F0;
    --header-split-subtitle: #F9F6F0;
    --title-highlight-colour: #D0C79C;
    --title-highlight-text-colour: #2d1517;
    --header-split-button-bg: #D2E1EF;
    --header-split-button-border: #D2E1EF;
    --header-split-button-text: #6B2649;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #F9F6F0;
}

.header-split--purple {
    --header-split-bg: #D0D0EC;
    --header-split-text: #2d1517;
    --header-split-subtitle: #2d1517;
    --title-highlight-colour: #F9F6F0;
    --title-highlight-text-colour: inherit;
    --header-split-button-bg: #6B2649;
    --header-split-button-border: #6B2649;
    --header-split-button-text: #F9F6F0;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #6B2649;
}

.header-split--blue {
    --header-split-bg: #D2E1EF;
    --header-split-text: #2d1517;
    --header-split-subtitle: #2d1517;
    --title-highlight-colour: #D0C79C;
    --title-highlight-text-colour: inherit;
    --header-split-button-bg: #6B2649;
    --header-split-button-border: #6B2649;
    --header-split-button-text: #F9F6F0;
    --header-split-button-hover-bg: transparent;
    --header-split-button-hover-text: #6B2649;
}

.header-split__content {
    position: relative;
    z-index: 2;
    width: 45%; margin-left: 5%; max-width: 820px;
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-split-bg);
    color: var(--header-split-text);
    padding: 110px 6vw 90px;
    text-align: center;
}

.header-split__content-inner {
    max-width: 650px;
    margin: 0 auto;
}

.header-split__subtitle {
    color: var(--header-split-subtitle);
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 45px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 54px;
}

.header-split__title {
    color: var(--header-split-text);
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 68px;
    line-height: 0.95;
    margin: 0 auto 46px;
}

.header-split__text {
    color: var(--header-split-text);
    max-width: 540px;
    margin: 0 auto;
}

.header-split__text p {
    color: inherit;
}

.header-split__button {
    margin: 30px auto 0;
    background: var(--header-split-button-bg) !important;
    border-color: var(--header-split-button-border) !important;
    color: var(--header-split-button-text) !important;
}

.header-split__button:hover {
    background: var(--header-split-button-hover-bg) !important;
    color: var(--header-split-button-hover-text) !important;
}

.header-split__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    line-height: 0;
    overflow: hidden;
}

.header-split__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .header-split {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .header-split__content {
        width: 100%;
        min-height: 0;
        margin-left: 0;
        padding: 82px 28px 72px;
    }

    .header-split__subtitle {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 4px;
        margin-bottom: 34px;
    }

    .header-split__title {
        font-size: 52px;
        line-height: 0.98;
        margin-bottom: 34px;
    }

    .header-split__image {
        position: relative;
        inset: auto;
        width: 100%;
        height: 58vw;
        min-height: 340px;
        z-index: 1;
    }
}

@media only screen and (max-width: 600px) {
    .header-split__content {
        padding: 64px 24px 58px;
    }

    .header-split__title {
        font-size: 42px;
    }

    .header-split__image {
        height: 72vw;
        min-height: 280px;
    }
}

/* Hero Text */

.hero-text {
    --hero-text-bg: #F9F6F0;
    --hero-text-colour: #2d1517;
    --hero-text-button-bg: #6B2649;
    --hero-text-button-border: #6B2649;
    --hero-text-button-colour: #F9F6F0;
    --hero-text-button-hover-colour: #6B2649;
    --title-highlight-colour: #D0D0EC;
    --title-highlight-text-colour: inherit;

    background: var(--hero-text-bg);
    color: var(--hero-text-colour);
    border-top: 1px solid var(--border-colour);
    padding: 112px 0 118px;
    text-align: center;
}

/* Colour Themes */

.hero-text--neutral {
    --hero-text-bg: #EEEDE5;
    --hero-text-colour: #2d1517;
    --hero-text-button-bg: #6B2649;
    --hero-text-button-border: #6B2649;
    --hero-text-button-colour: #F9F6F0;
    --hero-text-button-hover-colour: #6B2649;
    --title-highlight-colour: #D0D0EC;
    --title-highlight-text-colour: inherit;
}

.hero-text--green {
    --hero-text-bg: #9C8C3C;
    --hero-text-colour: #F9F6F0;
    --hero-text-button-bg: #D2E1EF;
    --hero-text-button-border: #D2E1EF;
    --hero-text-button-colour: #6B2649;
    --hero-text-button-hover-colour: #F9F6F0;
    --title-highlight-colour: #6B2649;
    --title-highlight-text-colour: #F9F6F0;
}

.hero-text--burgundy {
    --hero-text-bg: #6B2649;
    --hero-text-colour: #F9F6F0;
    --hero-text-button-bg: #D2E1EF;
    --hero-text-button-border: #D2E1EF;
    --hero-text-button-colour: #6B2649;
    --hero-text-button-hover-colour: #F9F6F0;
    --title-highlight-colour: #D0C79C;
    --title-highlight-text-colour: #2d1517;
}

.hero-text--purple {
    --hero-text-bg: #D0D0EC;
    --hero-text-colour: #2d1517;
    --hero-text-button-bg: transparent;
    --hero-text-button-border: #6B2649;
    --hero-text-button-colour: #6B2649;
    --hero-text-button-hover-colour: #6B2649;
    --title-highlight-colour: #B4303C;
    --title-highlight-text-colour: #F9F6F0;
}

.hero-text--blue {
    --hero-text-bg: #D2E1EF;
    --hero-text-colour: #2d1517;
    --hero-text-button-bg: transparent;
    --hero-text-button-border: #6B2649;
    --hero-text-button-colour: #6B2649;
    --hero-text-button-hover-colour: #6B2649;
    --title-highlight-colour: #D0C79C;
    --title-highlight-text-colour: inherit;
}

/* Layout */

.hero-text__inner {
    width: 86%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.hero-text__stars {
    position: absolute;
    top: -46px;
    left: -5%;
    width: 150px;
    pointer-events: none;
}

.hero-text__stars img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-text__subtitle {
    color: inherit;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.hero-text__title {
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 68px;
    line-height: 0.94;
    max-width: 760px;
    margin: 0 auto 46px;
}

.hero-text__text {
    color: inherit;
    max-width: 680px;
    margin: 0 auto;
}

.hero-text__text p {
    color: inherit;
    margin-bottom: 22px;
}

.hero-text__text p:last-child {
    margin-bottom: 0;
}

.hero-text__text strong,
.hero-text__text b {
    font-weight: 500;
}

.hero-text__text em,
.hero-text__text i {
    font-style: italic;
    font-weight: inherit;
}

/* Underlined text becomes the large quote/statement style */
.hero-text__text u, .hero-text__text span[style*="underline"] {
    display: block;
    max-width: 940px;
    margin: 0 auto 44px;
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 38px;
    line-height: 1.05;
    text-decoration: none !important;
}

.hero-text__text u em,
.hero-text__text u i {
    font-style: italic;
    font-weight: 100;
}

.hero-text__button {
    margin: 38px auto 0;
    background: var(--hero-text-button-bg) !important;
    border-color: var(--hero-text-button-border) !important;
    color: var(--hero-text-button-colour) !important;
}

.hero-text__button:hover {
    background: transparent !important;
    color: var(--hero-text-button-hover-colour) !important;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .hero-text {
        padding: 78px 0 84px;
    }

    .hero-text__inner {
        width: 88%;
    }

    .hero-text__stars {
        width: 110px;
    }

    .hero-text__title {
        font-size: 52px;
        line-height: 0.98;
        margin-bottom: 34px;
    }

   .hero-text__text u {
        font-size: 30px;
        line-height: 1.08;
        margin-bottom: 34px;
    }
	
}

@media only screen and (max-width: 600px) {
    .hero-text {
        padding: 64px 0 70px;
    }

    .hero-text__title {
        font-size: 42px;
    }

 .hero-text__text u {
        font-size: 26px;
    }
	
}

/* Video Testimonials */

.video-testimonials {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 0;
    overflow: hidden;
}

.video-testimonials__header {
    background: #D2E1EF;
    border-bottom: 1px solid var(--border-colour);
    padding: 24px;
    text-align: center;
}

.video-testimonials__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}

.video-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.video-testimonials__item {
    padding: 50px 3vw 48px;
    border-right: 1px solid var(--border-colour);
}

.video-testimonials__item:last-child {
    border-right: none;
}

.video-testimonials__video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    padding: 0;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #D0D0EC;
    cursor: pointer;
}

.video-testimonials__video img,
.video-testimonials__video iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.video-testimonials__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #6B2649;
    color: #F9F6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-testimonials__name {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 38px 0 16px;
}

.video-testimonials__role {
    color: #2d1517;
    margin: 0;
}

@media only screen and (max-width: 1100px) {
    .video-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-testimonials__item:nth-child(2n) {
        border-right: none;
    }

    .video-testimonials__item {
        border-bottom: 1px solid var(--border-colour);
    }
}

@media only screen and (max-width: 650px) {
    .video-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .video-testimonials__item {
        border-right: none;
        padding: 42px 28px;
    }

    .video-testimonials__video {
        max-width: 340px;
        margin: 0 auto;
    }

    .video-testimonials__name,
    .video-testimonials__role {
        text-align: center;
    }
}

/* Image Gallery Carousel */

.image-gallery-carousel {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 106px 0 112px;
    overflow: hidden;
}

.image-gallery-carousel__header {
    width: 86%;
    max-width: 780px;
    margin: 0 auto 72px;
    text-align: center;
}

.image-gallery-carousel__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0 auto;
}

.image-gallery-carousel__track {
    margin: 0;
}

.image-gallery-carousel__slide {
    padding: 0 24px;
}

.image-gallery-carousel__image {
    width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
}

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

/* Slick fixes */

.image-gallery-carousel .slick-track {
    display: flex;
    align-items: center;
}

.image-gallery-carousel .slick-slide {
    height: auto;
}

.image-gallery-carousel .slick-slide > div {
    height: 100%;
}

@media only screen and (max-width: 900px) {
    .image-gallery-carousel {
        padding: 78px 0 84px;
    }

    .image-gallery-carousel__header {
        width: 88%;
        margin-bottom: 52px;
    }

    .image-gallery-carousel__title {
        font-size: 50px;
    }

    .image-gallery-carousel__slide {
        padding: 0 16px;
    }

    .image-gallery-carousel__image {
        width: 420px;
        border-radius: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .image-gallery-carousel {
        padding: 64px 0 70px;
    }

    .image-gallery-carousel__title {
        font-size: 42px;
    }

    .image-gallery-carousel__image {
        width: 78vw;
        aspect-ratio: 1.45 / 1;
    }
}

/* ==========================================================================
   Image Gallery Carousel - Style Variations
   ========================================================================== */

/* Current rounded square/autoscroll style */

.image-gallery-carousel--square_autoscroll .image-gallery-carousel__slide {
    padding: 0 28px;
}

.image-gallery-carousel--square_autoscroll .image-gallery-carousel__image {
    width: clamp(260px, 26vw, 520px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    line-height: 0;
}

.image-gallery-carousel--square_autoscroll .image-gallery-carousel__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portrait arrow-navigation style */

.image-gallery-carousel--portrait_arrows {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    padding: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__header {
    padding: 76px 0 52px;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__track {
    position: relative;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__slide {
    padding: 0;
}

.image-gallery-carousel--portrait_arrows .slick-slide > div {
    padding: 0 4px;
    box-sizing: border-box;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__image {
    margin: 0;
	border-left: 4px solid #F9F6F0;
    border-right: 4px solid #F9F6F0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0;
    line-height: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */

.image-gallery-carousel__arrows {
    position: relative;
    z-index: 3;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-arrow {
    position: absolute;
    top: -240px;
    z-index: 5;
    min-width: 112px;
    min-height: 62px;
    border: none;
    border-radius: 0;
    background: #F9F6F0;
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev {
    left: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next {
    right: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev::before,
.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next::before {
    display: none;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev::after,
.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next::after {
    display: block;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev::after {
    content: "— Prev";
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next::after {
    content: "Next —";
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev {
    left: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next {
    right: 0;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev::before,
.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next::before {
    display: none;
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-prev::after {
    content: "— Prev";
}

.image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-next::after {
    content: "Next —";
}

/* Optional ticker text underneath, if added later */

.image-gallery-carousel__ticker {
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    background: #F9F6F0;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .image-gallery-carousel--square_autoscroll .image-gallery-carousel__slide {
        padding: 0 18px;
    }

    .image-gallery-carousel--square_autoscroll .image-gallery-carousel__image {
        width: clamp(230px, 64vw, 420px);
    }

    .image-gallery-carousel--portrait_arrows .image-gallery-carousel__header {
        padding: 58px 0 42px;
    }

    .image-gallery-carousel--portrait_arrows .image-gallery-carousel__arrows .slick-arrow {
        top: -210px;
        min-width: 96px;
        min-height: 54px;
        font-size: 10px;
        letter-spacing: 4px;
    }
}

/* FAQs */

.faqs {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
}

.faqs__header {
    background: #D0D0EC;
    border-bottom: 1px solid var(--border-colour);
    padding: 24px;
    text-align: center;
}

.faqs__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}

.faqs__inner {
    width: 78%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 86px 0 98px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7vw;
}

.faqs__item {
    border-bottom: 1px solid #6B2649;
}

.faqs__question {
    width: 100%;
    min-height: 60px;
    border: none;
    background: transparent;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
}

.faqs__icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
}

.faqs__icon::before,
.faqs__icon::after {
    content: "";
    position: absolute;
    background: #6B2649;
    transition: transform 0.25s ease;
}

.faqs__icon::before {
    width: 12px;
    height: 1px;
    left: 0;
    top: 50%;
}

.faqs__icon::after {
    width: 1px;
    height: 12px;
    left: 50%;
    top: 0;
}

.faqs__question[aria-expanded="true"] .faqs__icon::after {
    transform: scaleY(0);
}

.faqs__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 34px 0 0;
    color: #2d1517;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}

.faqs__answer p {
    color: inherit;
    margin-bottom: 18px;
}

.faqs__answer p:last-child {
    margin-bottom: 0;
}

.faqs__item.is-open .faqs__answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 34px 28px 0;
}

@media only screen and (max-width: 1000px) {
    .faqs__inner {
        width: 86%;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 64px 0 74px;
    }
}

@media only screen and (max-width: 600px) {
    .faqs__header {
        padding: 26px 20px;
    }

    .faqs__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
    }

    .faqs__inner {
        width: 88%;
        padding: 48px 0 58px;
    }

    .faqs__question {
        min-height: 66px;
        padding: 18px 0;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 3px;
    }
}

/* Membership Pricing */

/* ==========================================================================
   Membership Pricing - Group Membership
   ========================================================================== */

.membership-pricing__group-panel {
    display: none;
    max-width: 720px;
    margin: 54px auto 0;
    text-align: center;
}

.membership-pricing__group-panel.is-active {
    display: block;
}

.membership-pricing.is-group-active .membership-pricing__cards {
    display: none;
}

.membership-pricing__group-intro {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 25px;
}

.membership-pricing__group-intro p {
    margin: 0 0 18px;
}

.membership-pricing__group-intro p:last-child {
    margin-bottom: 0;
}

.membership-pricing__group-note {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 34px;
}

.membership-pricing__card--group {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.membership-pricing__card--group .membership-pricing__button {
    margin-top: 34px;
}

@media only screen and (max-width: 700px) {
    .membership-pricing__group-panel {
        margin-top: 42px;
    }

    .membership-pricing__card--group {
        max-width: none;
    }

    .membership-pricing__group-intro {
        font-size: 16px;
        line-height: 24px;
    }
}

.membership-pricing {
    --title-highlight-colour: #D2E1EF;

    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 96px 0 122px;
}

.membership-pricing__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

.membership-pricing__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 52px;
}

.membership-pricing__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.membership-pricing__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0;
}

.membership-pricing__tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 52px;
    flex-wrap: wrap;
}

.membership-pricing__tab {
    min-width: 190px;
    min-height: 42px;
    border: 1px solid #B4303C;
    border-radius: 999px;
    background: transparent;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.membership-pricing__tab.is-active {
    background: #B4303C;
    color: #F9F6F0;
}

.membership-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    align-items: start;
}

.membership-pricing__card {
    border: 1px solid #6B2649;
    border-radius: 18px;
    overflow: hidden;
    background: #F9F6F0;
}

.membership-pricing__card-header {
    background: #6B2649;
    color: #F9F6F0;
    padding: 18px 28px;
}

.membership-pricing__card-header h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
}

.membership-pricing__card-body {
    padding: 28px;
}


.membership-pricing__description {
    font-size: 14px;
    margin-bottom: 12px !important;
}

.membership-pricing__price {
    display: none;
}

.membership-pricing__price.is-active {
    display: block;
}

.membership-pricing__price-number {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 58px;
    line-height: 1;
    margin: 0 0 22px;
}

.membership-pricing__price-number span {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 10px;
}

.membership-pricing__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.membership-pricing__features li {
    border-top: 1px solid #6B2649;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    padding: 12px 0;
}

.membership-pricing__features li:last-child {
    border-bottom: 1px solid #6B2649;
}

.membership-pricing__button {
    margin: 22px auto 0;
    background: #9C8C3C !important;
    border-color: #9C8C3C !important;
    color: #F9F6F0 !important;
	display: block !important;
}

.membership-pricing__note {
    color: #B4303C;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    margin: 18px 0 0;
}

.membership-pricing__group-panel {
    display: none;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.membership-pricing__group-panel p {
    margin: 30px 0;
}

.membership-pricing__group-panel.is-active {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .membership-pricing__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 600px) {
    .membership-pricing {
        padding: 70px 0 82px;
    }

    .membership-pricing__title {
        font-size: 42px;
    }

    .membership-pricing__tab {
        width: 100%;
    }
}

/* Team Carousel */

.team-carousel {
    --title-highlight-colour: #D0D0EC;

    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 104px 0 96px;
    overflow: hidden;
}

.team-carousel__header {
    width: 86%;
    max-width: 820px;
    margin: 0 auto 76px;
    text-align: center;
}

.team-carousel__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.team-carousel__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0 auto;
}

.team-carousel__wrap {
    position: relative;
}

.team-carousel__track {
    margin: 0;
}

.team-carousel__slide {
    padding: 0 46px;
}

.team-carousel__member {
    text-align: center;
    color: #2d1517;
}

.team-carousel__image {
    width: 360px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 34px;
    line-height: 0;
    overflow: hidden;
    background: #D0D0EC;
}

.team-carousel__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-carousel__role {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.team-carousel__name {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.team-carousel__position {
    max-width: 360px;
    margin: 0 auto 18px;
    color: #2d1517;
}

.team-carousel__linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #9C8C3C;
    color: #F9F6F0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-transform: lowercase;
	margin-top: 15px;
}

.team-carousel__arrows {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 56px auto 0;
}

.team-carousel__arrows .slick-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #6B2649;
    border-radius: 50%;
    background: transparent;
    color: #6B2649;
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.team-carousel__arrows .slick-arrow::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-top: 1px solid #6B2649;
    border-right: 1px solid #6B2649;
    top: 50%;
    left: 50%;
}

.team-carousel__arrows .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.team-carousel__arrows .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* Slick fixes */

.team-carousel .slick-track {
    display: flex;
    align-items: flex-start;
}

.team-carousel .slick-slide {
    height: auto;
}

.team-carousel .slick-slide > div {
    height: 100%;
}

@media only screen and (max-width: 1000px) {
    .team-carousel {
        padding: 78px 0 84px;
    }

    .team-carousel__header {
        width: 88%;
        margin-bottom: 56px;
    }

    .team-carousel__title {
        font-size: 50px;
    }

    .team-carousel__slide {
        padding: 0 24px;
    }

    .team-carousel__image {
        width: 300px;
    }
}

@media only screen and (max-width: 600px) {
    .team-carousel {
        padding: 64px 0 72px;
    }

    .team-carousel__title {
        font-size: 42px;
    }

    .team-carousel__slide {
        padding: 0 16px;
    }

    .team-carousel__image {
        width: 78vw;
        max-width: 320px;
    }

    .team-carousel__role {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 4px;
    }
}

/* Header Simple */

.header-simple {
    background: #F9F6F0;
    padding: 100px 0 74px;
    text-align: center;
}

.header-simple__inner {
    width: 86%;
    max-width: 900px;
    margin: 0 auto;
}

.header-simple__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.header-simple__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 76px;
    line-height: 0.95;
    max-width: 780px;
    margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
    .header-simple {
        padding: 120px 0 64px;
    }

    .header-simple__title {
        font-size: 58px;
    }
}

@media only screen and (max-width: 600px) {
    .header-simple {
        padding: 86px 0 52px;
    }

    .header-simple__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 22px;
    }

    .header-simple__title {
        font-size: 44px;
    }
}

/* Resource Download */

.resource-download {
    --title-highlight-colour: #D2E1EF;

    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 86px 0;
}

.resource-download__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 92px;
    align-items: center;
}

.resource-download.image-right .resource-download__inner {
    grid-template-columns: 1.14fr 0.86fr;
}

.resource-download__image-wrap {
    width: 100%;
	z-index: 2;
}

.resource-download__image {
    width: 100%;
    aspect-ratio: 1.24 / 1;
    overflow: hidden;
    border-radius: 28px;
    line-height: 0;
}

.resource-download__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-download__content {
    color: #2d1517;
    max-width: 720px;
	position: relative;
}

.resource-download__icon {
    width: 42px;
    margin: 0 0 38px;
    position: absolute;
    left: -10%;
    top: 5%;
	display: none;
}

.resource-download__icon img {
    display: block;
    width: 100%;
    height: auto;
}

.resource-download__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 36px;
}

.resource-download__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 1;
    max-width: 760px;
    margin: 0 0 42px;
}

.resource-download__divider {
    width: 180%;
    height: 1px;
    background: var(--border-colour);
    margin: 0 0 34px;
    position: relative;
    z-index: 1;
}

.resource-download .button {
    background: #b12d3a;
    border-color: #b12d3a;
    color: #ffffff;
}

.resource-download .button:hover {
    background: transparent;
    border-color: #b12d3a;
    color: #b12d3a;
}

.resource-download.image-left .resource-download__divider {
	left: -80%;
}

.resource-download.image-right .resource-download__divider {
	left: 0%;
}

.resource-download__text {
    max-width: 760px;
    color: #2d1517;
}

.resource-download__text p {
    color: inherit;
}

.resource-download__button {
    margin-top: 34px;
}

/* Image right option */

.resource-download.image-right .resource-download__image-wrap {
    order: 2;
}

.resource-download.image-right .resource-download__content {
    order: 1;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .resource-download {
        padding: 68px 0;
    }

    .resource-download__inner,
    .resource-download.image-right .resource-download__inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .resource-download.image-right .resource-download__image-wrap,
    .resource-download.image-right .resource-download__content {
        order: initial;
    }

    .resource-download__content {
        max-width: 720px;
    }

    .resource-download__title {
        font-size: 44px;
        line-height: 1;
    }
	
	.resource-download__icon,
    .resource-download.image-right .resource-download__icon {
        position: relative;
        top: auto;
        left: auto;
        width: 42px;
        margin: 0 0 28px;
    }
}

@media only screen and (max-width: 600px) {
    .resource-download {
        padding: 54px 0;
    }

    .resource-download__image {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .resource-download__icon {
        width: 44px;
        margin-bottom: 28px;
    }

    .resource-download__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .resource-download__title {
        font-size: 38px;
        margin-bottom: 30px;
    }
}

/* Feature Dropdown */

.feature-dropdown {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 108px 0 116px;
}

.feature-dropdown__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 88px;
    align-items: center;
}

.feature-dropdown.image-right .feature-dropdown__inner {
    grid-template-columns: 1.22fr 0.78fr;
}

.feature-dropdown__image-wrap {
    width: 100%;
}

.feature-dropdown__image {
    width: 100%;
    aspect-ratio: 0.82 / 1;
    border-radius: 28px;
    overflow: hidden;
    line-height: 0;
}

.feature-dropdown__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-dropdown__content {
    color: #2d1517;
}

.feature-dropdown__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 34px 74px;
	padding-bottom: 20px;
}

.feature-dropdown__items {
    border-top: 1px solid var(--border-colour);
}

.feature-dropdown__item {
    border-bottom: 1px solid var(--border-colour);
}

.feature-dropdown__trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 30px;
    align-items: center;
    color: #2d1517;
    text-align: left;
    cursor: pointer;
}

.feature-dropdown__icon {
    width: 34px;
    display: block;
    line-height: 0;
}

.feature-dropdown__icon img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-dropdown__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 40px;
    line-height: 1;
}

.feature-dropdown__toggle {
    position: relative;
    width: 16px;
    height: 16px;
}

.feature-dropdown__toggle::before,
.feature-dropdown__toggle::after {
    content: "";
    position: absolute;
    background: #6B2649;
    transition: transform 0.25s ease;
}

.feature-dropdown__toggle::before {
    width: 16px;
    height: 1px;
    left: 0;
    top: 50%;
}

.feature-dropdown__toggle::after {
    width: 1px;
    height: 16px;
    left: 50%;
    top: 0;
}

.feature-dropdown__trigger[aria-expanded="true"] .feature-dropdown__toggle::after {
    transform: scaleY(0);
}

.feature-dropdown__panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.feature-dropdown__item.is-open .feature-dropdown__panel {
    max-height: 500px;
    opacity: 1;
}

.feature-dropdown__panel-inner {
    max-width: 720px;
    padding: 0 46px 28px 74px;
    color: #2d1517;
}

.feature-dropdown__panel-inner p {
    color: inherit;
    margin-bottom: 18px;
}

.feature-dropdown__panel-inner p:last-child {
    margin-bottom: 0;
}

/* Image right option */

.feature-dropdown.image-right .feature-dropdown__image-wrap {
    order: 2;
}

.feature-dropdown.image-right .feature-dropdown__content {
    order: 1;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .feature-dropdown {
        padding: 72px 0 82px;
    }

    .feature-dropdown__inner,
    .feature-dropdown.image-right .feature-dropdown__inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .feature-dropdown.image-right .feature-dropdown__image-wrap,
    .feature-dropdown.image-right .feature-dropdown__content {
        order: initial;
    }

    .feature-dropdown__image {
        aspect-ratio: 1.2 / 1;
    }

    .feature-dropdown__subtitle {
        margin-left: 0;
    }

    .feature-dropdown__trigger {
        grid-template-columns: 36px minmax(0, 1fr) 18px;
        gap: 22px;
    }

    .feature-dropdown__title {
        font-size: 42px;
    }

    .feature-dropdown__panel-inner {
        padding-left: 58px;
    }
}

@media only screen and (max-width: 600px) {
    .feature-dropdown {
        padding: 56px 0 66px;
    }

    .feature-dropdown__image {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .feature-dropdown__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .feature-dropdown__trigger {
        grid-template-columns: 30px minmax(0, 1fr) 16px;
        gap: 16px;
        padding: 16px 0;
    }

    .feature-dropdown__icon {
        width: 26px;
    }

    .feature-dropdown__title {
        font-size: 32px;
    }

    .feature-dropdown__panel-inner {
        padding: 0 28px 24px 46px;
    }
}

/* Benefits */

.benefits {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
}

.benefits__header {
    background: #D2E1EF;
    border-bottom: 1px solid var(--border-colour);
    padding: 24px;
    text-align: center;
}

.benefits__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefits__item {
    min-height: 360px;
    padding: 82px 6vw 70px;
    border-right: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    color: #2d1517;
}

.benefits__item:nth-child(3n) {
    border-right: none;
}

.benefits__icon {
    width: 42px;
    margin: 0 0 44px;
    line-height: 0;
}

.benefits__icon img {
    display: block;
    width: 100%;
    height: auto;
}

.benefits__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 28px;
}

.benefits__text {
    max-width: 460px;
    color: #2d1517;
}

.benefits__text p {
    color: inherit;
    margin-bottom: 18px;
}

.benefits__text p:last-child {
    margin-bottom: 0;
}

.benefits__item--empty {
    pointer-events: none;
}

.benefits__item--empty::before {
    content: "";
}

/* Optional: remove bottom border from final full row if this section sits above another bordered section */
/*
.benefits__item:nth-last-child(-n+3) {
    border-bottom: none;
}
*/

@media only screen and (max-width: 1000px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits__item {
        min-height: 300px;
        padding: 58px 7vw 54px;
    }

    .benefits__item:nth-child(3n) {
        border-right: 1px solid var(--border-colour);
    }

    .benefits__item:nth-child(2n) {
        border-right: none;
    }
}

@media only screen and (max-width: 650px) {
    .benefits__header {
        padding: 26px 20px;
    }

    .benefits__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits__item,
    .benefits__item:nth-child(3n),
    .benefits__item:nth-child(2n) {
        border-right: none;
    }

    .benefits__item {
        min-height: 0;
        padding: 46px 28px 48px;
    }

    .benefits__item--empty {
        display: none;
    }

    .benefits__icon {
        width: 36px;
        margin-bottom: 32px;
    }

    .benefits__title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
}

/* Contact Form Block */

.contact-form-block {
    --title-highlight-colour: #D2E1EF;

    background: #EEEDE5;
    border-top: 1px solid var(--border-colour);
    padding: 108px 0 88px;
    text-align: center;
}

.contact-form-block__inner {
    width: 86%;
    max-width: 760px;
    margin: 0 auto;
}

.contact-form-block__header {
    position: relative;
    margin: 0 auto 48px;
}

.contact-form-block__stars {
    position: absolute;
    top: -44px;
    right: 12%;
    width: 140px;
    margin: 0;
    pointer-events: none;
}

.contact-form-block__stars img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-form-block__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0 auto 34px;
}

.contact-form-block__text {
    color: #2d1517;
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-block__text p {
    color: inherit;
    margin-bottom: 18px;
}

.contact-form-block__text p:last-child {
    margin-bottom: 0;
}

/* Contact Form 7 styling */

.contact-form-block__form {
    margin: 0 auto;
}

.contact-form-block__form form {
    display: grid;
    gap: 28px;
}

.contact-form-block__form p {
    margin: 0;
}

.contact-form-block__form label {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

.contact-form-block__form input[type="text"],
.contact-form-block__form input[type="email"],
.contact-form-block__form input[type="tel"],
.contact-form-block__form input[type="url"],
.contact-form-block__form textarea,
.contact-form-block__form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 0 12px;
    text-align: center;
}

.contact-form-block__form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-block__form input:focus,
.contact-form-block__form textarea:focus,
.contact-form-block__form select:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.contact-form-block__form input[type="submit"],
.contact-form-block__form button[type="submit"] {
    min-width: 210px;
    min-height: 44px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: transparent;
    color: #6B2649;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 16px auto 0;
    padding: 12px 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form-block__form input[type="submit"]:hover,
.contact-form-block__form button[type="submit"]:hover {
    background: #6B2649;
    color: #F9F6F0;
}

.contact-form-block__form .wpcf7-spinner {
    display: block;
    margin: 16px auto 0;
}

.contact-form-block__form .wpcf7-not-valid-tip {
    color: #B4303C;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    margin-top: 8px;
    text-align: center;
}

.contact-form-block__form .wpcf7-response-output {
    border-color: #B4303C;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    margin: 28px 0 0;
    padding: 16px;
    text-align: center;
}

.contact-form-block__form input::placeholder,
.contact-form-block__form textarea::placeholder {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
}

.contact-form-block__form input::-webkit-input-placeholder,
.contact-form-block__form textarea::-webkit-input-placeholder {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
}

@media only screen and (max-width: 900px) {
    .contact-form-block {
        padding: 78px 0 86px;
    }

    .contact-form-block__inner {
        width: 88%;
    }

    .contact-form-block__stars {
        width: 110px;
    }

    .contact-form-block__title {
        font-size: 50px;
    }
	 .contact-form-block__stars {
        position: relative;
        top: auto;
        right: auto;
        width: 110px;
        margin: 0 auto 20px;
    }
}

@media only screen and (max-width: 600px) {
    .contact-form-block {
        padding: 62px 0 72px;
    }

    .contact-form-block__title {
        font-size: 42px;
    }

    .contact-form-block__form label {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
    }
}

/* ==========================================================================
   Member Portal Template
   ========================================================================== */

.member-portal-page {
    background: #F9F6F0;
}

.member-portal {
    min-height: 100vh;
    background: #F9F6F0;
    color: #2d1517;
}

.member-portal__header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F9F6F0;
}

.member-portal__announcement {
    background: #6B2649;
    color: #F9F6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    text-align: center;
}

.member-portal__announcement p {
    margin: 0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.member-portal__utility {
    min-height: 76px;
    border-bottom: 1px solid var(--border-colour);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 0 48px;
}

.member-portal__utility a,
.member-portal__search input,
.member-portal__search button {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2d1517;
}

.member-portal__search button span {
    font-size: 22px;
}

.member-portal__utility-left {
    justify-self: start;
}

.member-portal__utility-center {
    justify-self: center;
}

.member-portal__utility-right {
    justify-self: end;
}

.member-portal__search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-portal__search input {
    width: 120px;
    border: none;
    background: transparent;
    text-align: center;
    padding: 8px 0;
}

.member-portal__search input::placeholder {
    color: #2d1517;
    opacity: 1;
}

.member-portal__search input:focus {
    outline: none;
}

.member-portal__search button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.member-portal__layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: calc(100vh - 120px);
	align-items: stretch;
}

.member-portal__sidebar {
    border-right: 1px solid var(--border-colour);
    padding: 34px 28px 44px;
    text-align: center;
	position: sticky;
    top: 112px;
    align-self: stretch;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
}

.member-portal__profile {
    margin-bottom: 38px;
}

.member-portal__hub-title {
    margin: 0 0 28px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.member-portal__member-name {
    margin: 0 0 8px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.member-portal__member-email {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 20px;
	font-family: 'stolzl';
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 20px;
	font-weight: 300;
}

.member-portal__avatar {
    width: 190px;
    height: 190px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #D2E1EF;
}

.member-portal__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-portal__profile-actions {
    display: grid;
    gap: 10px;
}

.member-portal__button {
    min-height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.member-portal__button--solid {
    background: #9C8C3C;
    border: 1px solid #9C8C3C;
    color: #F9F6F0;
}

.member-portal__button--outline {
    background: transparent;
    border: 1px solid #9C8C3C;
    color: #9C8C3C;
}

.member-portal__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-portal__menu li {
    margin: 0 0 20px;
    padding: 0;
}

.member-portal__menu a {
    display: block;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.member-portal__menu .current-menu-item > a,
.member-portal__menu .current_page_item > a,
.member-portal__menu .current_page_ancestor > a {
    color: #2d1517;
	text-decoration: underline;
    text-underline-offset: 10px;
}

.member-portal__main {
    min-width: 0;
    background: #F9F6F0;
}

/* Basic member dashboard content helpers */

.member-portal__main > .wp-block-group,
.member-portal__main > .wp-block-columns,
.member-portal__main > .wp-block-cover,
.member-portal__main > .wp-block-acf-header-simple,
.member-portal__main > .wp-block-acf-simple-image-text {
    margin-top: 0;
}

/* MemberPress account content reset */

.member-portal__main .mepr-account-container,
.member-portal__main .mp_wrapper {
    max-width: 1100px;
    margin: 0;
}

.member-portal__main .mepr-account-container h1,
.member-portal__main .mp_wrapper h1,
.member-portal__main .mepr-account-container h2,
.member-portal__main .mp_wrapper h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    color: #2d1517;
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .member-portal__layout {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .member-portal__sidebar {
        padding: 30px 20px 38px;
    }

    .member-portal__avatar {
        width: 150px;
        height: 150px;
    }
}

@media only screen and (max-width: 850px) {
    .member-portal__header {
        position: relative;
    }

    .member-portal__utility {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 24px;
        text-align: center;
    }

    .member-portal__utility-left,
    .member-portal__utility-center,
    .member-portal__utility-right {
        justify-self: center;
    }

    .member-portal__layout {
        grid-template-columns: 1fr;
    }

    .member-portal__sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-colour);
		position: relative;
        top: 0;
    }

    .member-portal__menu {
        display: flex;
        gap: 22px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .member-portal__menu li {
        margin: 0;
        flex: 0 0 auto;
    }

    .member-portal__menu a {
        white-space: nowrap;
        font-size: 11px;
        letter-spacing: 4px;
    }

    .member-portal__main .mepr-account-container,
    .member-portal__main .mp_wrapper {
        padding: 34px 24px;
    }
}

/* Member Login */

.member-login {
    --title-highlight-colour: #D0D0EC;

    display: grid;
    grid-template-columns: 50% 50%;
    min-height: calc(100vh - 116px);
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    overflow: hidden;
}

.member-login__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7vw 90px;
    text-align: center;
}

.member-login__content-inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.member-login__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.member-login__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0 auto 56px;
}

.member-login__image {
    line-height: 0;
    overflow: hidden;
}

.member-login__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 116px);
    object-fit: cover;
}

/* ==========================================================================
   Member Login Template
   ========================================================================== */

.member-login-template {
    --title-highlight-colour: #D0D0EC;

    display: grid;
    grid-template-columns: 50% 50%;
    min-height: calc(100vh - 116px);
    background: #F9F6F0;
    overflow: hidden;
}

.member-login-template__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7vw 90px;
    text-align: center;
}

.member-login-template__content-inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.member-login-template__subtitle {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.member-login-template__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 62px;
    line-height: 0.95;
    margin: 0 auto 56px;
}

.member-login-template__title p {
    margin: 0;
}

.member-login-template__image {
    line-height: 0;
    overflow: hidden;
}

.member-login-template__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 116px);
    object-fit: cover;
}

/* MemberPress Login Form */

.member-login-template__form {
    width: 100%;
    margin: 0 auto;
}

.member-login-template__form .mp_wrapper,
.member-login-template__form .mepr-login-form-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.member-login-template__form form {
    width: 100%;
}

.member-login-template__form .mp-form-row,
.member-login-template__form .mepr-form-row {
    margin: 0 0 34px;
	position: relative;
}

.member-login-template__form .button.mp-hide-pw {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 0;
    min-height: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent !important;
    color: #B4303C !important;
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: none;
}

.member-login-template .mp_wrapper .mp-form-row label {
    display: none !important;
}

.member-login-template .mp_wrapper form {
    text-align: center !important;
    text-transform: uppercase;
    font-family: 'stolzl';
    font-weight: 300;
    color: #b4303c;
    letter-spacing: 3px !important;
    font-size: 14px;
}

.member-login-template__form input[type="text"],
.member-login-template__form input[type="email"],
.member-login-template__form input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 0 14px;
    text-align: center;
}

.member-login-template__form input::placeholder {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
}

.member-login-template__form input:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.member-login-template__form .mepr-remember-me,
.member-login-template__form .mepr-login-actions,
.member-login-template__form .mp-form-row.mepr-remember-me {
    margin: 12px 0 28px;
    text-align: center;
}

.member-login-template__form .mepr-remember-me label,
.member-login-template__form .mp-form-row.mepr-remember-me label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.member-login-template__form input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    margin: 0;
}

.member-login-template__form input[type="checkbox"]:checked {
    background: #B4303C;
    box-shadow: inset 0 0 0 3px #F9F6F0;
}

.member-login-template__form input[type="submit"],
.member-login-template__form button[type="submit"],
.member-login-template__form .mepr-submit {
    width: auto;
    min-width: 260px;
    min-height: 44px;
    border: 1px solid #D0D0EC;
    border-radius: 999px;
    background: #D0D0EC;
    color: #6B2649;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 34px;
    display: block;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
}

.member-login-template__form input[type="submit"]:hover,
.member-login-template__form button[type="submit"]:hover,
.member-login-template__form .mepr-submit:hover {
    background: transparent;
    color: #6B2649;
}

.member-login-template__form .mepr_error,
.member-login-template__form .mepr_updated,
.member-login-template__form .mepr_message {
    border: 1px solid #B4303C;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    padding: 14px 18px;
    margin: 0 0 24px;
    text-align: center;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .member-login-template {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .member-login-template__content {
        padding: 90px 28px 76px;
    }

    .member-login-template__title {
        font-size: 52px;
    }

    .member-login-template__image {
        height: 58vw;
        min-height: 340px;
    }

    .member-login-template__image img {
        min-height: 0;
        height: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .member-login-template__content {
        padding: 70px 24px 62px;
    }

    .member-login-template__subtitle {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .member-login-template__title {
        font-size: 42px;
        margin-bottom: 42px;
    }

    .member-login-template__image {
        height: 72vw;
        min-height: 280px;
    }

    .member-login-template__form input[type="submit"],
    .member-login-template__form button[type="submit"],
    .member-login-template__form .mepr-submit {
        min-width: 220px;
    }
}



/* Member Quarterly Priorities */

.member-quarterly-priorities {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    padding: 72px 0 82px;
    text-align: center;
}

.member-quarterly-priorities__inner {
    width: 86%;
    max-width: 1120px;
    margin: 0 auto;
}

.member-quarterly-priorities__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 1;
    margin: 0 0 62px;
}

.member-quarterly-priorities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.member-quarterly-priorities__number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #B4303C;
    color: #F9F6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    margin: 0 auto 28px;
}

.member-quarterly-priorities__goal {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 20px;
}

.member-quarterly-priorities__subgoals {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-quarterly-priorities__subgoals li {
    border-top: 1px solid #6B2649;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
}

.member-quarterly-priorities__subgoals li:last-child {
    border-bottom: 1px solid #6B2649;
}

@media only screen and (max-width: 900px) {
    .member-quarterly-priorities__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Member Dashboard Intro */

.member-dashboard-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    border-bottom: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.member-dashboard-intro__welcome {
    padding: 40px 3vw 45px;
}

.member-dashboard-intro__title {
    --title-highlight-colour: #D0D0EC;

    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 76px;
    line-height: 0.95;
    margin: 0 0 28px;
}

.member-dashboard-intro__text {
    max-width: 780px;
    color: #2d1517;
    font-size: 18px;
    line-height: 25px;
    margin: 0;
}

.member-dashboard-intro__tasks {
    border-left: 1px solid var(--border-colour);
    padding: 54px 38px 42px;
}

.member-dashboard-intro__tasks-title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 28px;
}

.member-dashboard-intro__tasks-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-dashboard-intro__tasks-list li {
    border-bottom: 1px solid #6B2649;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.member-dashboard-intro__tasks-list li:first-child {
    border-top: 1px solid #6B2649;
}

.member-dashboard-intro__tasks-list a {
    display: block;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 0;
}

.member-dashboard-intro__task-check {
    width: 16px;
    height: 16px;
    border: 1px solid #B4303C;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.member-dashboard-intro__tasks-list li.is-complete .member-dashboard-intro__task-check {
    background: #B4303C;
    box-shadow: inset 0 0 0 3px #F9F6F0;
    cursor: default;
}

.member-dashboard-intro__tasks-list li.is-complete a {
    opacity: 0.55;
}

/* Monthly tasks don't have tick buttons, so use a single-column layout */

.member-dashboard-intro__tasks-list--monthly li {
    display: block;
}

.member-dashboard-intro__tasks-list--monthly a {
    padding: 16px 0;
}

@media only screen and (max-width: 1100px) {
    .member-dashboard-intro {
        grid-template-columns: 1fr;
    }

    .member-dashboard-intro__tasks {
        border-left: none;
        border-top: 1px solid var(--border-colour);
    }
}

@media only screen and (max-width: 700px) {
    .member-dashboard-intro__welcome {
        padding: 44px 28px 38px;
    }

    .member-dashboard-intro__title {
        font-size: 48px;
    }

    .member-dashboard-intro__text {
        font-size: 16px;
        line-height: 22px;
    }

    .member-dashboard-intro__tasks {
        padding: 38px 28px;
    }
}

/* Member Portal Footer */

.member-portal-footer {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
}

.member-portal-footer__nav {
    min-height: 68px;
    background: #6B2649;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 28px;
    padding: 18px 34px;
    flex-wrap: wrap;
}

.member-portal-footer__nav a {
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.member-portal-footer__bottom {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    text-align: center;
}

.member-portal-footer__bottom p {
    margin: 0;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media only screen and (max-width: 700px) {
    .member-portal-footer__nav {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
}


/* ==========================================================================
   Member Feature Cards
   ========================================================================== */

.member-feature-cards {
    background: #F9F6F0;
    padding: 40px 0 50px;
}

.member-feature-cards__inner {
    width: 95%;
    max-width: 1260px;
    margin: 0 auto;
}

.member-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.member-feature-cards__card {
    color: #2d1517;
}

.member-feature-cards__image {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    overflow: hidden;
    line-height: 0;
    margin: 0 0 28px;
}

.member-feature-cards__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-feature-cards__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 18px;
}

.member-feature-cards__text {
    max-width: 360px;
    color: #2d1517;
    margin: 0 0 24px;
}

.member-feature-cards__text p {
    color: inherit;
    margin: 0 0 14px;
}

.member-feature-cards__text p:last-child {
    margin-bottom: 0;
}

.member-feature-cards__button {
    min-width: 0;
    min-height: 38px;
    padding: 10px 24px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
}

/* Member area sizing tweak */

.member-portal .member-feature-cards {
    padding-left: 0;
    padding-right: 0;
}

.member-portal .member-feature-cards__inner {
    width: 95%;
    max-width: 1240px;
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .member-feature-cards__grid {
        gap: 28px;
    }

    .member-feature-cards__title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 850px) {
    .member-feature-cards__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .member-feature-cards__image {
        aspect-ratio: 1.45 / 1;
    }

    .member-feature-cards__text {
        max-width: none;
    }
}

@media only screen and (max-width: 600px) {
    .member-feature-cards {
        padding: 46px 0;
    }

    .member-feature-cards__inner,
    .member-portal .member-feature-cards__inner {
        width: 88%;
    }

    .member-feature-cards__title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Member Content Pages
   ========================================================================== */

.member-content-header {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
}

.member-content-header__inner,
.member-content-library__inner {
    width: 90%;
    max-width: 1120px;
    margin: 20px 50px;
}

.member-content-library__select {
    min-height: 2rem;
    padding: 0.35rem 1.25rem;
    border: 1px solid #9c8d3c;
    border-radius: 999px;
    background-color: transparent;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9c8d3c;
}

.member-content-card[hidden] {
    display: none;
}

.member-content-card__image {
    position: relative;
}

.member-content-card__eyebrow {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: #f9f8f4;
    font-size: 0.65rem;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
	    font-family: 'stolzl';
    font-weight: 300;
}

.member-content-header__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 76px;
    line-height: 0.95;
    margin: 0 0 32px;
}

.member-content-header__intro {
    color: #2d1517;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}

.member-content-library {
    background: #F9F6F0;
    padding: 15px 0 86px;
}

.member-content-library__inner {
    width: 100%;
}

.member-content-library__filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 34px;
}

.member-content-library__filter {
    min-width: 174px;
    min-height: 38px;
    border: 1px solid #9C8C3C;
    border-radius: 999px;
    background: transparent;
    color: #9C8C3C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 24px;
}

.member-content-library__filter.is-active {
    background: #9C8C3C;
    color: #F9F6F0;
}

.member-content-library__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 28px;
}

.member-content-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
    color: #2d1517;
}

.member-content-card__link {
    display: block;
    color: inherit;
    height: 100%;
}

.member-content-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    line-height: 0;
}

.member-content-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-content-card__content {
    padding: 22px 24px 28px;
    text-align: center;
}

.member-content-card__meta {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.member-content-card__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    margin: 14px 0 14px;
}

.member-content-card__location {
    margin: 0 0 22px;
    color: #2d1517;
    font-size: 15px;
    line-height: 20px;
}

.member-content-card__excerpt {
    color: #2d1517;
    font-size: 15px;
    line-height: 21px;
}

.member-content-card__button {
    min-width: 190px;
    min-height: 36px;
    padding: 9px 22px;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    margin: 15px auto 0;
	background: #9c8d3c;
    border-color: #9c8d3c;
}

.member-content-library__empty {
    color: #2d1517;
    font-size: 16px;
    line-height: 22px;
}

/* Static feedback/request card inside member content grids */

.member-content-card--feedback {
    background: #EEEDE5;
}

.member-content-card--feedback .member-content-card__content {
    text-align: left;
}

.member-content-card--feedback .member-content-card__title {
    margin-bottom: 18px;
}

.member-content-card--feedback .member-content-card__excerpt {
    font-size: 15px;
    line-height: 21px;
}

.member-content-card--feedback .member-content-card__excerpt p {
    margin: 0 0 14px;
	font-size: 14px;
}

.member-content-card--feedback .member-content-card__excerpt p:last-child {
    margin-bottom: 0;
}

.member-content-card--feedback .member-content-card__button {
    margin: 22px 0 0;
	display: none;
}

.member-content-card--feedback .member-content-card__image {
    padding: 20px 20px 0;
}

/* Replays style */

.member-content-library--replays .member-content-card__image {
    aspect-ratio: 1.46 / 1;
}

.member-content-library--replays .member-content-card__content {
    min-height: 140px;
}

.member-content-library--replays .member-content-card__title {
    font-size: 27px;
}

/* If replay thumbnails are designed graphics, keep them contained nicely */
.member-content-library--replays .member-content-card__image img {
    object-fit: cover;
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .member-content-library__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-content-header__title {
        font-size: 62px;
    }
}

@media only screen and (max-width: 700px) {
    .member-content-header__inner,
    .member-content-library__inner {
        width: 88%;
    }

    .member-content-header__inner {
        padding: 48px 0 34px;
    }

    .member-content-header__title {
        font-size: 46px;
    }

    .member-content-header__intro {
        font-size: 16px;
        line-height: 22px;
    }

    .member-content-library__filters {
        display: grid;
        grid-template-columns: 1fr;
    }

    .member-content-library__filter {
        width: 100%;
    }

    .member-content-library__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Blog Index
   ========================================================================== */

.blog-index {
    background: #f8f5ef;
    color: #2b1118;
    font-family: var(--font-body);
}

/* Header / Intro */

.blog-index-hero {
    padding: 100px 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-colour);
}

.blog-index-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

.blog-index-hero__eyebrow {
    margin: 0 0 1.25rem;
    font-family: var(--font-accent);
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-index-hero__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.75rem);
    line-height: 0.95;
    font-weight: 400;
}

.blog-index-hero__title em {
    font-style: italic;
}

.blog-index-hero__title strong {
    position: relative;
    z-index: 1;
    font-weight: inherit;
}


/* Featured Posts */

.blog-featured-posts {
    border-bottom: 1px solid var(--border-colour);
}

.blog-featured-posts__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 86%;
	margin: 0 auto;
}

.blog-featured-card {
    position: relative;
    min-height: 310px;
    border-right: 1px solid var(--border-colour);
}

.blog-featured-card:nth-child(2n) {
    border-right: 0;
}

.blog-featured-card__link {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-featured-card__image {
    aspect-ratio: 1 / 1.3;
    overflow: hidden;
}

.blog-featured-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	padding: 5%;
}

.blog-featured-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 2rem 1.75rem;
}

.blog-featured-card__badge {
    position: absolute;
    top: -2rem;
    left: 2.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    background: #d8d6f0;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(-12deg);
	font-weight: 300;
    text-align: center;
}

.blog-featured-card__title {
    margin: 0 0 2rem;
    font-family: var(--font-heading);
    font-size: 2vw;
    line-height: 0.95;
    font-weight: 400;
}

.blog-featured-card__meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    margin-bottom: 1.25rem;
}

.blog-featured-card__meta img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

/* Shared Accent Text */

.blog-card__category,
.blog-card__author,
.blog-card__date,
.blog-card__button,
.blog-pagination__link {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-card__category,
.blog-card__author,
.blog-card__date {
    margin: 0;
}

.blog-card__category {
    margin-bottom: 1rem;
	font-weight: 300;
    font-size: 13px;
    padding-bottom: 10px;
}

.blog-card__author {
    font-weight: 700;
}

.blog-card__date {
    margin-top: 0.25rem;
	font-weight: 300;
}

.blog-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9rem;
    min-height: 2rem;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background: #9a902d;
    color: #f9f8f4;
    line-height: 1;
    text-decoration: none;
}

.blog-card .blog-card__button {
    background: #9a902d;
	border-color: #9a902d;
}

/* Grid */

.blog-grid-section {
    padding: 4rem 2rem 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem 3.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.blog-card {
    border: 1px solid var(--border-colour);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-align: center;
    text-decoration: none;
}

.blog-card__image {
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 1.25rem 1.5rem;
}

.blog-card__title {
    margin: 0 0 1.4rem;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 0.95;
    font-weight: 400;
}

.blog-card__content .blog-card__button {
    margin-top: auto;
}

/* Pagination */

.blog-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    max-width: 1120px;
    margin: 4rem auto 0;
}

.blog-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    background: #6b1833;
    color: #f9f8f4;
    line-height: 1;
    text-decoration: none;
}

.blog-pagination__link--previous {
    margin-right: auto;
}

/* ==========================================================================
   Blog Responsive
   ========================================================================== */

@media (max-width: 1050px) {
    .blog-featured-posts__grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-card {
        border-right: 0;
        border-bottom: 1px solid var(--border-colour);
    }

    .blog-featured-card:last-child {
        border-bottom: 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
	
	.blog-featured-card__title {
    font-size: 5vw;
}
}

@media (max-width: 750px) {
    .blog-index-hero {
        padding: 3.5rem 1.25rem 2.5rem;
    }

    .blog-featured-card__link {
        grid-template-columns: 1fr;
    }

    .blog-featured-card__content {
        padding: 1.5rem 1.25rem 1.75rem;
    }

    .blog-featured-card__badge {
        top: 1rem;
        left: 1rem;
        width: 4.8rem;
        height: 4.8rem;
        font-size: 0.65rem;
    }

    .blog-grid-section {
        padding: 3rem 1.25rem 4rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-pagination {
        flex-direction: column;
        align-items: stretch;
        margin-top: 3rem;
    }

    .blog-pagination__link,
    .blog-pagination__link--previous {
        width: 100%;
        margin-right: 0;
    }
}

/* ==========================================================================
   Single Blog Post
   ========================================================================== */

.single-post-template {
    background: #F9F6F0;
    color: #2d1517;
    font-family: var(--font-body);
}

.single-post-hero {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
    padding: 106px 0 64px;
    text-align: center;
}

.single-post-hero__inner {
    width: 86%;
    max-width: 980px;
    margin: 0 auto;
}

.single-post-hero__category {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.single-post-hero__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 58px;
    line-height: 0.98;
    max-width: 900px;
    margin: 0 auto 36px;
}

.single-post-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.single-post-hero__meta img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.single-post-hero__author,
.single-post-hero__date {
    margin: 0;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    text-transform: uppercase;
}

.single-post-hero__author {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    font-weight: 500;
}

.single-post-hero__date {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    margin-top: 3px;
}

/* Featured image */

.single-post-featured-image {
    background: #F9F6F0;
    padding: 64px 0 54px;
}

.single-post-featured-image__inner {
    width: 86%;
    max-width: 740px;
    margin: 0 auto;
    line-height: 0;
}

.single-post-featured-image__inner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Content */

.single-post-content-section {
    background: #F9F6F0;
    padding: 0 0 54px;
}

.single-post-content {
    width: 86%;
    max-width: 740px;
    margin: 0 auto;
    border-top: 1px solid var(--border-colour);
    padding-top: 54px;
}

.single-post-content p,
.single-post-content li {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.single-post-content p {
    margin: 0 0 24px;
}

.single-post-content p:last-child {
    margin-bottom: 0;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1;
    margin: 44px 0 22px;
}

.single-post-content h2 {
    font-size: 42px;
}

.single-post-content h3 {
    font-size: 34px;
}

.single-post-content h4 {
    font-size: 28px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0 0 28px;
    padding-left: 1.35em;
}

.single-post-content a {
    color: #6B2649;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Author Card */

.single-post-author-section {
    background: #F9F6F0;
    padding: 0 0 76px;
}

.single-post-author-section__inner {
    width: 86%;
    max-width: 740px;
    margin: 0 auto;
}

.single-post-author-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    background: #EEEDE5;
    padding: 26px 32px;
}

.single-post-author-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.single-post-author-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-author-card__name {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 8px;
}

.single-post-author-card__role {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.single-post-author-card__connect {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.single-post-author-card__connect a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #9C8C3C;
    color: #F9F6F0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: lowercase;
}

/* CTA */

.single-post-cta {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(217, 210, 198, 0.28) 0,
            rgba(217, 210, 198, 0.28) 16px,
            transparent 16px,
            transparent 32px
        ),
        #F9F6F0;
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    padding: 92px 0;
    text-align: center;
}

.single-post-cta__inner {
    width: 86%;
    max-width: 1000px;
    margin: 0 auto;
	    background: #faf6f0;
    padding: 40px 0;
}

.single-post-cta__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 0.95;
    margin: 0 auto 34px;
}

.single-post-cta__text {
    max-width: 580px;
    margin: 0 auto;
}

.single-post-cta__text p {
    color: #2d1517;
    margin: 0 0 20px;
}

.single-post-cta__text p:last-child {
    margin-bottom: 0;
}

.single-post-cta__text strong,
.single-post-cta__text b {
    font-family: var(--font-body);
    font-weight: 500;
}

.single-post-cta__button {
    margin: 34px auto 0;
    background: #6B2649 !important;
    border-color: #6B2649 !important;
    color: #F9F6F0 !important;
}

.single-post-cta__button:hover {
    background: transparent !important;
    color: #6B2649 !important;
}

/* Related posts */

.single-post-related {
    background: #F9F6F0;
    padding: 92px 0 106px;
}

.single-post-related__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

.single-post-related__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 1;
    text-align: center;
    margin: 0 0 64px;
}

.single-post-related__grid {
    margin: 0;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .single-post-hero {
        padding: 82px 0 54px;
    }

    .single-post-hero__title {
        font-size: 46px;
    }

    .single-post-featured-image {
        padding: 48px 0 42px;
    }

    .single-post-content {
        padding-top: 42px;
    }

    .single-post-author-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .single-post-cta {
        padding: 72px 0;
    }

    .single-post-cta__title,
    .single-post-related__title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 600px) {
    .single-post-hero__inner,
    .single-post-featured-image__inner,
    .single-post-content,
    .single-post-author-section__inner,
    .single-post-cta__inner,
    .single-post-related__inner {
        width: 88%;
    }

    .single-post-hero {
        padding: 64px 0 44px;
    }

    .single-post-hero__category {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .single-post-hero__title {
        font-size: 38px;
    }

    .single-post-content h2 {
        font-size: 34px;
    }

    .single-post-content h3 {
        font-size: 30px;
    }

    .single-post-share-author {
        padding-bottom: 58px;
    }

    .single-post-author-card {
        padding: 28px 24px;
    }

    .single-post-author-card__name {
        font-size: 30px;
    }

    .single-post-cta {
        padding: 60px 0;
    }

    .single-post-cta__title,
    .single-post-related__title {
        font-size: 38px;
    }

    .single-post-related {
        padding: 68px 0 78px;
    }
}

/* ==========================================================================
   Public Events Page
   ========================================================================== */

.events-page {
    background: #F9F6F0;
    color: #2d1517;
}

.events-hero {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
    padding: 100px 2rem 3rem;
    text-align: center;
}

.events-hero__inner {
    width: 86%;
    max-width: 960px;
    margin: 0 auto;
}

.events-hero__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.events-hero__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 76px;
    line-height: 0.95;
    max-width: 840px;
    margin: 0 auto;
}

/* Featured event */

.events-featured {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
    padding: 68px 0 72px;
}

.events-featured__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 96px;
    align-items: center;
}

.events-featured__image {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    background: #6B2649;
	position: relative;
}

.events-featured__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-featured__content {
    max-width: 760px;
}

.events-featured__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 32px;
}

.events-featured__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 46px;
    line-height: 1;
    max-width: 720px;
    margin: 0 0 30px;
}

.events-featured__meta {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-colour);
}

.events-featured__excerpt {
    max-width: 760px;
    color: #2d1517;
    margin: 0 0 32px;
	padding-top: 20px;
}

.events-featured__excerpt p {
    margin: 0;
}

.events-featured__button {
    background: #6B2649 !important;
    border-color: #6B2649 !important;
    color: #F9F6F0 !important;
}

.events-featured__button:hover {
    background: transparent !important;
    color: #6B2649 !important;
}

/* Listing */

.events-listing {
    background: #F9F6F0;
    padding: 74px 0 112px;
}

.events-listing__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

.events-listing__filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 56px;
}

.events-listing__filter {
    min-width: 190px;
    min-height: 42px;
    border: 1px solid #B4303C;
    border-radius: 999px;
    background: transparent;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
}

.events-listing__filter.is-active {
    background: #B4303C;
    color: #F9F6F0;
}

.events-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.event-card[hidden] {
    display: none;
}

.event-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
    color: #2d1517;
}

.events-featured__access,
.event-card__access {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: #F9F6F0;
    color: #6B2649;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.events-featured__access {
    margin: 0 0 22px;
}

.event-card__image {
    position: relative;
}

.event-card__access {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.event-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-align: center;
}

.event-card__image {
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    line-height: 0;
}

.event-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 30px;
}

.event-card__meta {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.event-card__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 18px;
}

.event-card__location {
    color: #2d1517;
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 24px;
	padding-bottom: 20px;
}

.event-card__button {
    margin-top: auto;
    min-width: 190px;
    background: #9C8C3C !important;
    border-color: #9C8C3C !important;
    color: #F9F6F0 !important;
}

.event-card__button:hover {
    background: transparent !important;
    color: #9C8C3C !important;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .events-hero__title {
        font-size: 58px;
    }

    .events-featured__inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .events-featured__image {
        max-width: 560px;
        margin: 0 auto;
    }

    .events-featured__content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .events-listing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 700px) {
    .events-hero {
        padding: 72px 0 54px;
    }

    .events-hero__inner,
    .events-featured__inner,
    .events-listing__inner {
        width: 88%;
    }

    .events-hero__eyebrow,
    .events-featured__eyebrow {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 4px;
        margin-bottom: 22px;
    }

    .events-hero__title {
        font-size: 46px;
    }

    .events-featured {
        padding: 54px 0 58px;
    }

    .events-featured__title {
        font-size: 38px;
    }

    .events-featured__meta {
        font-size: 13px;
        line-height: 19px;
    }

    .events-listing {
        padding: 58px 0 72px;
    }

    .events-listing__filters {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 42px;
    }

    .events-listing__filter {
        width: 100%;
    }

    .events-listing__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Members Single Event
   ========================================================================== */

.members-single {
    background: #F9F6F0;
    color: #2d1517;
}

.members-single-event {
    background: #F9F6F0;
    padding: 72px 0 74px;
}

.members-single-event__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: start;
}

.members-single-event__content {
    padding-top: 4px;
}

.members-single-event__access {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.members-single-event__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 58px;
    line-height: 0.95;
    margin: 0 0 24px;
}

.members-single-event__details {
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    padding: 18px 0;
    margin: 0 0 28px;
}

.members-single-event__date,
.members-single-event__location {
    color: #2d1517;
    margin: 0;
}

.members-single-event__date {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.members-single-event__location {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 22px;
}

.members-single-event__body {
    max-width: 560px;
}

.members-single-event__body p,
.members-single-event__body li {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.members-single-event__body p {
    margin: 0 0 22px;
}

.members-single-event__body p:last-child {
    margin-bottom: 0;
}

.members-single-event__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 32px;
}

.members-single-event__button {
    min-width: 250px;
    background: #B4303C !important;
    border-color: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-event__button:hover {
    background: transparent !important;
    color: #B4303C !important;
}

.members-single-event__button--secondary {
    background: transparent !important;
    border-color: #B4303C !important;
    color: #B4303C !important;
}

.members-single-event__button--secondary:hover {
    background: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-event__image {
    position: relative;
    line-height: 0;
	aspect-ratio: 1 / 1;
    overflow: hidden;
}

.members-single-event__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related events */

.members-single-related {
    background: #F9F6F0;
    padding: 0 0 86px;
}

.members-single-related__inner {
    width: 86%;
    max-width: 1060px;
    margin: 0 auto;
}

.members-single-related__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 1;
    text-align: center;
    margin: 0 0 48px;
}

.members-single-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.members-event-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.members-event-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.members-event-card__image {
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    line-height: 0;
}

.members-event-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-event-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 20px 22px 24px;
}

.members-event-card__date {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.members-event-card__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 26px;
    line-height: 1;
    margin: 0 0 14px;
}

.members-event-card__location {
    color: #2d1517;
    font-size: 14px;
    line-height: 35px;
    margin: 0 0 20px;
}

.members-event-card__button {
    margin-top: auto;
    min-width: 190px;
    min-height: 34px;
    padding: 8px 22px;
    background: #9C8C3C !important;
    border-color: #9C8C3C !important;
    color: #F9F6F0 !important;
    font-size: 10px;
    line-height: 14px;
}

.members-event-card__button:hover {
    background: transparent !important;
    color: #9C8C3C !important;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .members-single-event__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .members-single-event__image {
        order: -1;
    }

    .members-single-event__title {
        font-size: 48px;
    }

    .members-single-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 700px) {
    .members-single-event {
        padding: 52px 0 58px;
    }

    .members-single-event__inner,
    .members-single-related__inner {
        width: 88%;
    }

    .members-single-event__title {
        font-size: 40px;
    }

    .members-single-event__buttons {
        align-items: stretch;
    }

    .members-single-event__button {
        width: 100%;
    }

    .members-single-related {
        padding-bottom: 64px;
    }

    .members-single-related__title {
        font-size: 38px;
        margin-bottom: 36px;
    }

    .members-single-related__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Members Single Masterclass
   ========================================================================== */

.members-single--masterclass {
    background: #F9F6F0;
    color: #2d1517;
}

.members-single-masterclass {
    background: #F9F6F0;
    padding: 58px 0 78px;
}

.members-single-masterclass__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Single masterclass header */

.member-content-header--single-masterclass {
    padding-bottom: 0;
}

.member-content-header__inner--with-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
}

.member-content-header__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.member-content-header__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    min-width: 220px;
}

.member-content-header__button {
    min-width: 220px;
    min-height: 36px;
    padding: 9px 22px;
    font-size: 11px;
    line-height: 15px;
}

.member-content-header__button--outline {
    background: transparent !important;
    border-color: #B4303C !important;
    color: #B4303C !important;
}

.member-content-header__button--outline:hover {
    background: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-masterclass__button {
    min-width: 220px;
    min-height: 36px;
    padding: 9px 22px;
    font-size: 11px;
    line-height: 15px;
}

.members-single-masterclass__button--outline {
    background: transparent !important;
    border-color: #B4303C !important;
    color: #B4303C !important;
}

.members-single-masterclass__button--outline:hover {
    background: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-masterclass__video {
    position: relative;
    width: 100%;
    margin: 0 auto;
    line-height: 0;
}

.members-single-masterclass__video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.members-single-masterclass__video--image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.members-single-masterclass__video--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-single-masterclass__content {
    max-width: 740px;
    margin: 42px auto 0;
}

.members-single-masterclass__content p,
.members-single-masterclass__content li {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.members-single-masterclass__content p {
    margin: 0 0 22px;
}

.members-single-masterclass__content p:last-child {
    margin-bottom: 0;
}

.members-single-masterclass__content h2,
.members-single-masterclass__content h3,
.members-single-masterclass__content h4 {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1;
    margin: 42px 0 20px;
}

.members-single-masterclass__content h2 {
    font-size: 40px;
}

.members-single-masterclass__content h3 {
    font-size: 34px;
}

.members-single-masterclass__content h4 {
    font-size: 28px;
}

/* Related masterclass cards */

.members-single-related--masterclasses {
    padding-top: 0;
}

.members-masterclass-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.members-masterclass-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.members-masterclass-card__image {
    aspect-ratio: 1.38 / 1;
    overflow: hidden;
    line-height: 0;
}

.members-masterclass-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-masterclass-card__content {
    padding: 24px 24px 28px;
}

.members-masterclass-card__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.members-masterclass-card__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    margin: 0;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .members-single-masterclass__header {
        grid-template-columns: 1fr;
        gap: 26px;
        align-items: start;
    }
	
	.member-content-header__inner--with-actions {
        grid-template-columns: 1fr;
        gap: 26px;
        align-items: start;
    }

    .members-single-masterclass__actions {
        align-items: flex-start;
    }

    .members-single-masterclass__title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 700px) {
    .members-single-masterclass {
        padding: 48px 0 62px;
    }

    .members-single-masterclass__inner {
        width: 88%;
    }

    .members-single-masterclass__title {
        font-size: 38px;
    }

    .members-single-masterclass__actions,
    .members-single-masterclass__button {
        width: 100%;
    }
}

/* ==========================================================================
   Members Single Directory / Offer
   ========================================================================== */

.members-single--directory {
    background: #F9F6F0;
    color: #2d1517;
}

.members-single-directory {
    background: #F9F6F0;
    padding: 72px 0 82px;
}

.members-single-directory__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 58px;
    align-items: start;
}

.members-single-directory__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.members-single-directory__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 58px;
    line-height: 0.95;
    margin: 0 0 28px;
}

.members-single-directory__meta {
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
    padding: 20px 0;
    margin: 0 0 30px;
}

.members-single-directory__tag,
.members-single-directory__website {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.members-single-directory__tag {
    margin: 0 0 10px;
}

.members-single-directory__website {
    display: inline-flex;
    text-decoration: none;
}

.members-single-directory__body {
    max-width: 620px;
}

.members-single-directory__body p,
.members-single-directory__body li {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.members-single-directory__body p {
    margin: 0 0 22px;
}

.members-single-directory__body p:last-child {
    margin-bottom: 0;
}

.members-single-directory__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 34px;
}

.members-single-directory__button {
    min-width: 250px;
    background: #B4303C !important;
    border-color: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-directory__button:hover {
    background: transparent !important;
    color: #B4303C !important;
}

.members-single-directory__button--secondary {
    background: transparent !important;
    border-color: #B4303C !important;
    color: #B4303C !important;
}

.members-single-directory__button--secondary:hover {
    background: #B4303C !important;
    color: #F9F6F0 !important;
}

.members-single-directory__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    line-height: 0;
}

.members-single-directory__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related directory cards */

.members-single-related--directory {
    padding-top: 0;
}

.members-directory-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.members-directory-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.members-directory-card__image {
    aspect-ratio: 1.32 / 1;
    overflow: hidden;
    line-height: 0;
}

.members-directory-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-directory-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 26px;
}

.members-directory-card__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.members-directory-card__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 26px;
    line-height: 1;
    margin: 0 0 14px;
}

.members-directory-card__excerpt {
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    max-width: 260px;
    margin: 0 0 20px;
}

.members-directory-card__button {
    margin-top: auto;
    min-width: 190px;
    min-height: 34px;
    padding: 8px 22px;
    background: #9C8C3C !important;
    border-color: #9C8C3C !important;
    color: #F9F6F0 !important;
    font-size: 10px;
    line-height: 14px;
}

.members-directory-card__button:hover {
    background: transparent !important;
    color: #9C8C3C !important;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .members-single-directory__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .members-single-directory__image {
        order: -1;
    }

    .members-single-directory__title {
        font-size: 48px;
    }
}

@media only screen and (max-width: 700px) {
    .members-single-directory {
        padding: 52px 0 64px;
    }

    .members-single-directory__inner {
        width: 88%;
    }

    .members-single-directory__title {
        font-size: 40px;
    }

    .members-single-directory__buttons {
        align-items: stretch;
    }

    .members-single-directory__button {
        width: 100%;
    }
}

/* ==========================================================================
   Members Single Blog
   ========================================================================== */

.members-single--blog {
    background: #F9F6F0;
    color: #2d1517;
}

/* Header */

.members-single-blog-header {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
}

.members-single-blog-header__inner {
    width: 90%;
    max-width: 1120px;
    margin: 20px 50px;
}

.members-single-blog-header__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 72px;
    line-height: 0.95;
    max-width: 1120px;
    margin: 0 0 32px;
}

.members-single-blog-header__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.members-single-blog-header__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.members-single-blog-header__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-single-blog-header__author,
.members-single-blog-header__date {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.members-single-blog-header__author {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 4px;
}

.members-single-blog-header__date {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
}

/* Content */

.members-single-blog-content-section {
    background: #F9F6F0;
    padding: 56px 0 84px;
}

.members-single-blog-content-section__inner {
    width: 86%;
    max-width: 740px;
    margin: 0 auto;
}

.members-single-blog__featured-image {
    width: 100%;
    margin: 0 0 42px;
    line-height: 0;
}

.members-single-blog__featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.members-single-blog__content {
    color: #2d1517;
}

.members-single-blog__content p,
.members-single-blog__content li {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.members-single-blog__content p {
    margin: 0 0 24px;
}

.members-single-blog__content p:last-child {
    margin-bottom: 0;
}

.members-single-blog__content h2,
.members-single-blog__content h3,
.members-single-blog__content h4 {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1;
    margin: 44px 0 22px;
}

.members-single-blog__content h2 {
    font-size: 42px;
}

.members-single-blog__content h3 {
    font-size: 34px;
}

.members-single-blog__content h4 {
    font-size: 28px;
}

.members-single-blog__content ul,
.members-single-blog__content ol {
    margin: 0 0 28px;
    padding-left: 1.35em;
}

.members-single-blog__content a {
    color: #6B2649;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Author Card */

.members-single-blog-author {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    background: #EEEDE5;
    padding: 26px 32px;
    margin-top: 56px;
}

.members-single-blog-author__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.members-single-blog-author__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.members-single-blog-author__name {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 8px;
}

.members-single-blog-author__role {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.members-single-blog-author__connect {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.members-single-blog-author__connect a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #9C8C3C;
    color: #F9F6F0;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: lowercase;
    text-decoration: none;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .members-single-blog-header__title {
        font-size: 56px;
    }
}

@media only screen and (max-width: 700px) {
    .members-single-blog-header {
        padding: 48px 0 36px;
    }

    .members-single-blog-header__inner,
    .members-single-blog-content-section__inner {
        width: 88%;
    }

    .members-single-blog-header__title {
        font-size: 40px;
    }

    .members-single-blog-content-section {
        padding: 42px 0 64px;
    }

    .members-single-blog-author {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 28px 24px;
    }

    .members-single-blog-author__name {
        font-size: 30px;
    }
}

/* ==========================================================================
   Members Search Results
   ========================================================================== */

.member-search-page {
    background: #F9F6F0;
    color: #2d1517;
}

.member-search-results {
    background: #F9F6F0;
    padding: 54px 0 86px;
}

.member-search-results__inner {
    width: 86%;
    max-width: 1040px;
    margin: 0 auto;
}

.member-search-results__list {
    display: grid;
    gap: 18px;
}

.member-search-result {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.member-search-result__link {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 22px;
}

.member-search-result__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    line-height: 0;
}

.member-search-result__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-search-result__label {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.member-search-result__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 12px;
}

.member-search-result__excerpt {
    max-width: 680px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
}

.member-search-pagination {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
}

.member-search-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 42px;
    padding: 10px 24px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: #6B2649;
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.member-search-pagination a:hover {
    background: transparent;
    color: #6B2649;
}

.member-search-results__empty {
    max-width: 620px;
}

.member-search-results__empty h2 {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 42px;
    line-height: 1;
    margin: 0 0 18px;
}

.member-search-results__empty p {
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

@media only screen and (max-width: 700px) {
    .member-search-results__inner {
        width: 88%;
    }

    .member-search-result__link {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .member-search-result__image {
        width: 100%;
    }

    .member-search-result__title {
        font-size: 30px;
    }

    .member-search-pagination {
        flex-direction: column;
    }

    .member-search-pagination a {
        width: 100%;
    }
}

/* ==========================================================================
   Member Account Pages
   ========================================================================== */

.member-account-page {
    background: #F9F6F0;
    color: #2d1517;
}

.member-account-page #mepr-account-nav, .member-account-page #mepr-account-welcome-message {
	display: none;
}

.member-account-details {
    background: #F9F6F0;
    padding: 52px 0 86px;
}

.member-account-details__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 76px;
    align-items: start;
}

.member-account-details__section-title,
.member-account-card__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 34px;
}

.member-account-details__form {
    width: 100%;
}

/* MemberPress account form styling */

.memberpress-styled-form form,
.memberpress-styled-form .mepr-form {
    width: 100%;
}

.memberpress-styled-form .mp-form-row,
.memberpress-styled-form .mepr-form-input,
.memberpress-styled-form .mepr_mepr-address-one,
.memberpress-styled-form .mepr_mepr-address-two,
.memberpress-styled-form .mepr_mepr-address-city,
.memberpress-styled-form .mepr_mepr-address-state,
.memberpress-styled-form .mepr_mepr-address-zip,
.memberpress-styled-form .mepr_mepr-address-country {

}

.memberpress-styled-form label,
.memberpress-styled-form .mp-form-label label {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.memberpress-styled-form .mp-form-label span,
.memberpress-styled-form .mepr-form-label span {
    display: none;
}
.memberpress-styled-form .mepr-form-has-errors,
.memberpress-styled-form .mepr-form-errors,
.memberpress-styled-form .mepr_error,
.memberpress-styled-form .mepr-validation-error {
}

.memberpress-styled-form input[type="text"],
.memberpress-styled-form input[type="email"],
.memberpress-styled-form input[type="password"],
.memberpress-styled-form input[type="tel"],
.memberpress-styled-form input[type="url"],
.memberpress-styled-form select,
.memberpress-styled-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0 12px;
    box-shadow: none;
}

.memberpress-styled-form input:focus,
.memberpress-styled-form select:focus,
.memberpress-styled-form textarea:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.memberpress-styled-form input[type="submit"],
.memberpress-styled-form button[type="submit"],
.memberpress-styled-form .mepr-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 230px;
    min-height: 42px;
    padding: 10px 26px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: #6B2649;
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.memberpress-styled-form input[type="submit"]:hover,
.memberpress-styled-form button[type="submit"]:hover,
.memberpress-styled-form .mepr-submit:hover {
    background: transparent;
    color: #6B2649;
}

/* Right column cards */

.member-account-details__side {
    display: grid;
    gap: 54px;
}

.member-account-card {
    width: 100%;
}

.member-account-card__profile {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.member-account-card__avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
}

.member-account-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-account-card__profile-text,
.member-account-card__text {
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
}

.member-account-card__profile-text p,
.member-account-card__text {
    margin: 0;
}

.member-account-card__label {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid #B4303C;
    padding-bottom: 12px;
    margin: 28px 0 0;
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .member-account-details__inner {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .member-account-details__side {
        max-width: 720px;
    }
}

@media only screen and (max-width: 700px) {
    .member-account-details {
        padding: 42px 0 64px;
    }

    .member-account-details__inner {
        width: 88%;
    }

    .member-account-card__profile {
        grid-template-columns: 1fr;
    }

    .member-account-card__avatar {
        width: 150px;
        height: 150px;
    }

    .memberpress-styled-form input[type="submit"],
    .memberpress-styled-form button[type="submit"],
    .memberpress-styled-form .mepr-submit {
        width: 100%;
    }
}

/* ==========================================================================
   Member Quarterly Goals
   ========================================================================== */

.member-quarterly-goals-form {
    margin-top: 28px;
}

.member-quarterly-goals-form__choices {
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
}

.member-quarterly-goals-form__choice {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: #2d1517 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    line-height: 21px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    cursor: pointer;
}

.member-quarterly-goals-form__choice input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: #6B2649;
}

.member-quarterly-goals-form__choice span {
    display: block;
}

.member-quarterly-goals-form__submit {
    min-width: 230px;
    min-height: 38px;
    padding: 9px 22px;
    font-size: 11px;
    line-height: 15px;
}

.member-account-notice {
    margin: 22px 0 0;
    padding: 12px 16px;
    border: 1px solid var(--border-colour);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
}

.member-account-notice--success {
    background: #D2E1EF;
    border-color: #D2E1EF;
}

.member-account-notice--error {
    background: #F9F6F0;
    border-color: #B4303C;
    color: #B4303C;
}

/* ==========================================================================
   Member Manage Account
   ========================================================================== */

.member-account-manage {
    background: #F9F6F0;
    padding: 52px 0 86px;
}

.member-account-manage__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
    gap: 76px;
    align-items: start;
}

.member-account-manage__main {
    display: grid;
    gap: 54px;
}

.member-account-manage__side {
    display: grid;
    gap: 42px;
}

.member-account-panel {
    border-top: 1px solid var(--border-colour);
    padding-top: 34px;
}

.member-account-panel__header {
    margin: 0 0 30px;
}

.member-account-panel__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.member-account-panel__intro {
    max-width: 620px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
    margin: 0;
}

.member-account-panel__content {
    width: 100%;
}

.member-account-payments-placeholder {
    border: 1px solid var(--border-colour);
    padding: 24px;
}

.member-account-payments-placeholder p {
    margin: 0;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
}

/* MemberPress account/subscription output */

p.member-account-card__text {
    padding-bottom: 20px;
}

.memberpress-styled-account {
    width: 100%;
}

.memberpress-styled-account table,
.memberpress-styled-account .mepr-account-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-colour);
    background: transparent;
}

.memberpress-styled-account table thead,
.memberpress-styled-account .mepr-account-table thead {
    border-bottom: 1px solid var(--border-colour);
}

.memberpress-styled-account table th,
.memberpress-styled-account table td,
.memberpress-styled-account .mepr-account-table th,
.memberpress-styled-account .mepr-account-table td {
    border: none;
    border-bottom: 1px solid var(--border-colour);
    padding: 16px 14px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
}

.memberpress-styled-account table th,
.memberpress-styled-account .mepr-account-table th {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.memberpress-styled-account a {
    color: #6B2649;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.memberpress-styled-account input[type="submit"],
.memberpress-styled-account button,
.memberpress-styled-account .button,
.memberpress-styled-account .mepr-submit {
    min-width: 150px;
    min-height: 34px;
    padding: 8px 18px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: #6B2649;
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.memberpress-styled-account input[type="submit"]:hover,
.memberpress-styled-account button:hover,
.memberpress-styled-account .button:hover,
.memberpress-styled-account .mepr-submit:hover {
    background: transparent;
    color: #6B2649;
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .member-account-manage__inner {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .member-account-manage__side {
        max-width: 720px;
    }
}

@media only screen and (max-width: 800px) {
    .memberpress-styled-account {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .memberpress-styled-account table,
    .memberpress-styled-account .mepr-account-table {
        min-width: 640px;
    }
}

@media only screen and (max-width: 700px) {
    .member-account-manage {
        padding: 42px 0 64px;
    }

    .member-account-manage__inner {
        width: 88%;
    }

    .member-account-card__button {
        width: 100%;
    }
}

/* ==========================================================================
   MemberPress Sign Up Pages
   ========================================================================== */

.tar-signup-page {
    background: #F9F6F0;
    color: #2d1517;
}

.tar-signup-hero {
    background: #F9F6F0;
    padding: 85px 0 78px;
}

.tar-signup-hero__inner {
    width: 86%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: 54px;
    align-items: start;
}

.tar-signup-hero__content {
    position: sticky;
    top: 120px;
}

.tar-signup-hero__eyebrow {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.tar-signup-hero__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 72px;
    line-height: 0.92;
    letter-spacing: -1px;
    margin: 0 0 32px;
}

.tar-signup-hero__text {
    max-width: 430px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 25px;
}

.tar-signup-hero__text p {
    margin: 0;
}

.tar-signup-form-card {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
    padding: 30px;
}

.tar-signup-form-card__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 34px;
}

/* MemberPress form cleanup */

.memberpress-signup-form .mp_wrapper,
.memberpress-signup-form .mepr-form,
.memberpress-signup-form form {
    max-width: none;
    width: 100%;
}

.memberpress-signup-form label,
.memberpress-signup-form .mp-form-label label {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.memberpress-signup-form input[type="text"],
.memberpress-signup-form input[type="email"],
.memberpress-signup-form input[type="password"],
.memberpress-signup-form input[type="tel"],
.memberpress-signup-form input[type="url"],
.memberpress-signup-form input[type="number"],
.memberpress-signup-form select,
.memberpress-signup-form textarea {
    width: 100%;
    min-height: 38px;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    padding: 6px 0 9px;
    box-shadow: none;
}

.memberpress-signup-form input:focus,
.memberpress-signup-form select:focus,
.memberpress-signup-form textarea:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.memberpress-signup-form input::placeholder,
.memberpress-signup-form textarea::placeholder {
    color: #2d1517;
    opacity: 0.45;
}

/* Make sure MemberPress submit area is visible */

.memberpress-signup-form .mepr-submit,
.memberpress-signup-form input.mepr-submit,
.memberpress-signup-form input[type="submit"],
.memberpress-signup-form button[type="submit"],
.memberpress-signup-form .mp-form-submit,
.memberpress-signup-form .mepr-form-submit,
.memberpress-signup-form .mepr-submit-wrapper,
.memberpress-signup-form .mp-form-row.mepr-submit-row {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.memberpress-signup-form .mp-form-submit,
.memberpress-signup-form .mepr-form-submit,
.memberpress-signup-form .mepr-submit-wrapper,
.memberpress-signup-form .mp-form-row.mepr-submit-row {
    width: 100%;
    margin-top: 18px;
}

.memberpress-signup-form .mepr-submit,
.memberpress-signup-form input.mepr-submit,
.memberpress-signup-form input[type="submit"],
.memberpress-signup-form button[type="submit"] {
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 260px;
    min-height: 44px;
    padding: 12px 28px;
    border: 1px solid #6B2649 !important;
    border-radius: 999px;
    background: #6B2649 !important;
    color: #F9F6F0 !important;
    font-family: var(--font-accent) !important;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.memberpress-signup-form .mepr-submit:hover,
.memberpress-signup-form input.mepr-submit:hover,
.memberpress-signup-form input[type="submit"]:hover,
.memberpress-signup-form button[type="submit"]:hover {
    background: transparent !important;
    color: #6B2649 !important;
}

/* Price / coupon / payment sections */

.memberpress-signup-form .mepr_price,
.memberpress-signup-form .mepr-product-price,
.memberpress-signup-form .mp_price_str {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 28px;
}

.memberpress-signup-form .mepr-payment-methods-wrapper,
.memberpress-signup-form .mepr-payment-methods-icons,
.memberpress-signup-form .mepr-payment-method,
.memberpress-signup-form .mepr_coupon {
    border-top: 1px solid var(--border-colour);
    padding-top: 26px;
    margin-top: 30px;
}

.memberpress-signup-form .mepr-payment-methods-wrapper label,
.memberpress-signup-form .mepr-payment-method label {
    color: #2d1517;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
}

/* Submit */

.memberpress-signup-form input[type="submit"],
.memberpress-signup-form button[type="submit"],
.memberpress-signup-form .mepr-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 260px;
    min-height: 44px;
    padding: 12px 28px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: #6B2649;
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}

.memberpress-signup-form input[type="submit"]:hover,
.memberpress-signup-form button[type="submit"]:hover,
.memberpress-signup-form .mepr-submit:hover {
    background: transparent;
    color: #6B2649;
}

/* Error / success messages */

.memberpress-signup-form .mepr_error,
.memberpress-signup-form .mepr_updated,
.memberpress-signup-form .mepr-form-has-errors {
    padding: 14px 18px;
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
    color: #B4303C;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 24px;
}
/* Sign-up price breakdown */

.tar-signup-price-breakdown {
    max-width: 460px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border-colour);
}

.tar-signup-price-breakdown__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: baseline;
    padding: 7px 0;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
}

.tar-signup-price-breakdown__row span,
.tar-signup-price-breakdown__row strong {
    font: inherit;
    font-weight: 400;
}

.tar-signup-price-breakdown__row strong {
    text-align: right;
}

.tar-signup-price-breakdown__row--total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-colour);
    font-size: 21px;
    line-height: 28px;
}

.tar-signup-price-breakdown__row--total span,
.tar-signup-price-breakdown__row--total strong {
    font-weight: 500;
}

.mp-form-row.mepr_bold.mepr_price {
    display: none;
}

@media only screen and (max-width: 700px) {
    .tar-signup-price-breakdown {
        max-width: none;
        margin-top: 30px;
        padding-top: 22px;
    }

    .tar-signup-price-breakdown__row {
        font-size: 16px;
        line-height: 24px;
    }

    .tar-signup-price-breakdown__row--total {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Responsive */

@media only screen and (max-width: 1100px) {
    .tar-signup-hero__inner {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .tar-signup-hero__content {
        position: static;
        max-width: 760px;
    }

    .tar-signup-hero__title {
        font-size: 58px;
    }
}

@media only screen and (max-width: 700px) {
    .tar-signup-hero {
        padding: 62px 0 72px;
    }

    .tar-signup-hero__inner {
        width: 88%;
    }

    .tar-signup-hero__title {
        font-size: 44px;
    }

    .tar-signup-form-card {
        padding: 28px 22px;
    }

    .memberpress-signup-form input[type="submit"],
    .memberpress-signup-form button[type="submit"],
    .memberpress-signup-form .mepr-submit {
        width: 100%;
    }
}


/* ==========================================================================
   Member Thank You / Onboarding Page
   ========================================================================== */

.member-thank-you-hero {
    background: #F9F6F0;
    border-bottom: 1px solid var(--border-colour);
}

.member-thank-you-hero__inner {
    width: 90%;
    max-width: 1320px;
    margin: 20px 50px;
}

.member-thank-you-hero__eyebrow {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.member-thank-you-hero__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: -1px;
    margin: 0 0 26px;
}

.member-thank-you-hero__intro {
    max-width: 720px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
    margin: 0;
}

.member-onboarding {
    background: #F9F6F0;
    padding: 54px 0 86px;
}

.member-onboarding__inner {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 76px;
    align-items: start;
}

.member-onboarding__main {
    display: grid;
    gap: 28px;
}

.member-onboarding__side {
    display: grid;
    gap: 48px;
}

.member-onboarding-form {
    display: grid;
    gap: 54px;
}

.member-onboarding-panel {
    border-top: 1px solid var(--border-colour);
    padding-top: 34px;
}

.member-onboarding-panel__title {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.member-onboarding-panel__text {
    max-width: 640px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
    margin: -8px 0 28px;
}

.member-onboarding-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.member-onboarding-form__field label {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.member-onboarding-form__field input {
    width: 100%;
    min-height: 42px;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0 12px;
    box-shadow: none;
}

.member-onboarding-form__field input:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.member-onboarding-goals {
    margin-top: 0;
}

.member-onboarding-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.member-onboarding-form__submit,
.member-onboarding-form__skip {
    min-width: 230px;
    min-height: 40px;
    padding: 10px 24px;
    font-size: 11px;
    line-height: 15px;
}

.member-onboarding-form__skip {
    background: transparent !important;
    border-color: #6B2649 !important;
    color: #6B2649 !important;
}

.member-onboarding-form__skip:hover {
    background: #6B2649 !important;
    color: #F9F6F0 !important;
}

@media only screen and (max-width: 1100px) {
    .member-onboarding__inner {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .member-onboarding__side {
        max-width: 720px;
    }

    .member-thank-you-hero__title {
        font-size: 58px;
    }
}

@media only screen and (max-width: 700px) {
    .member-thank-you-hero {
        padding: 42px 0 38px;
    }

    .member-thank-you-hero__inner,
    .member-onboarding__inner {
        width: 88%;
    }

    .member-thank-you-hero__title {
        font-size: 44px;
    }

    .member-onboarding {
        padding: 42px 0 64px;
    }

    .member-onboarding-form__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .member-onboarding-form__actions {
        display: grid;
        gap: 12px;
    }

    .member-onboarding-form__submit,
    .member-onboarding-form__skip {
        width: 100%;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-page {
    background: #F9F6F0;
    color: #2d1517;
}

.contact-hero {
    background: #F9F6F0;
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
}

.contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    min-height: 700px;
}

.contact-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 72%;
    max-width: 520px;
    margin: 0 auto;
    padding: 82px 0 88px;
    text-align: center;
}

.contact-hero__eyebrow {
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.contact-hero__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 58px;
    line-height: 0.95;
    margin: 0 0 28px;
}

.contact-hero__intro {
    max-width: 390px;
    margin: 0 auto 34px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
}

.contact-hero__image {
    min-height: 700px;
    border-left: 1px solid var(--border-colour);
    line-height: 0;
}

.contact-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

/* Contact Form 7 */

.contact-hero__form {
    width: 100%;
}

.tar-contact-form {
    width: 100%;
}

.tar-contact-form p {
    margin: 0;
}

.tar-contact-form label {
    display: block;
    margin: 0 0 24px;
}

.tar-contact-form label span,
.tar-contact-form .wpcf7-form-control-wrap + span {
    display: block;
}

.tar-contact-form label > span:first-child {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.tar-contact-form input[type="text"],
.tar-contact-form input[type="email"],
.tar-contact-form input[type="tel"],
.tar-contact-form input[type="url"],
.tar-contact-form select,
.tar-contact-form textarea {
    width: 100%;
    min-height: 42px;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0 12px;
    box-shadow: none;
    text-align: center;
}

.tar-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.tar-contact-form input:focus,
.tar-contact-form select:focus,
.tar-contact-form textarea:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.tar-contact-form input::placeholder,
.tar-contact-form textarea::placeholder {
    color: #2d1517;
    opacity: 0.45;
}

.tar-contact-form input[type="submit"],
.tar-contact-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 230px;
    min-height: 42px;
    padding: 10px 26px;
    border: 1px solid #6B2649;
    border-radius: 999px;
    background: #6B2649;
    color: #F9F6F0;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.tar-contact-form input[type="submit"]:hover,
.tar-contact-form .wpcf7-submit:hover {
    background: transparent;
    color: #6B2649;
}

.tar-contact-form .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

/* CF7 response messages */

.contact-hero__form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #B4303C;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
}

.contact-hero__form .wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 12px 16px;
    border: 1px solid var(--border-colour);
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
}

/* Responsive */

@media only screen and (max-width: 1000px) {
    .contact-hero__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-hero__content {
        width: 86%;
        max-width: 620px;
        padding: 68px 0 72px;
    }

    .contact-hero__image {
        min-height: 420px;
        border-left: none;
        border-top: 1px solid var(--border-colour);
    }

    .contact-hero__image img {
        min-height: 420px;
    }
}

@media only screen and (max-width: 700px) {
    .contact-hero__content {
        width: 88%;
        padding: 54px 0 60px;
    }

    .contact-hero__title {
        font-size: 44px;
    }

    .tar-contact-form input[type="submit"],
    .tar-contact-form .wpcf7-submit {
        width: 100%;
    }
}

/* ==========================================================================
   Contact Template
   Uses Member Login split-screen layout
   ========================================================================== */

.contact-template__title {
    margin-bottom: 28px;
}

.contact-template__text {
    max-width: 390px;
    margin: 0 auto 34px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}

.contact-template__text p {
    margin: 0;
}

.contact-template__form {
    width: 100%;
    margin: 0 auto;
}

/* Contact Form 7 */

.contact-template__form .wpcf7 {
    width: 100%;
}

.tar-contact-form {
    width: 100%;
}

.tar-contact-form p {
    margin: 0;
}

.tar-contact-form label {
    display: block;
    margin: 0 0 24px;
}

.tar-contact-form label > span:first-child {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.tar-contact-form input[type="text"],
.tar-contact-form input[type="email"],
.tar-contact-form input[type="tel"],
.tar-contact-form input[type="url"],
.tar-contact-form select,
.tar-contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 0 14px;
    text-align: center;
    box-shadow: none;
}

.tar-contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.tar-contact-form input:focus,
.tar-contact-form select:focus,
.tar-contact-form textarea:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.tar-contact-form input::placeholder,
.tar-contact-form textarea::placeholder {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
}

.tar-contact-form input[type="submit"],
.tar-contact-form .wpcf7-submit {
    width: auto;
    min-width: 260px;
    min-height: 44px;
    border: 1px solid #D0D0EC;
    border-radius: 999px;
    background: #D0D0EC;
    color: #6B2649;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 34px;
    display: block;
    margin: 10px auto 0;
}

.tar-contact-form input[type="submit"]:hover,
.tar-contact-form .wpcf7-submit:hover {
    background: transparent;
    color: #6B2649;
}

.contact-template__form .wpcf7-spinner {
    display: block;
    margin: 14px auto 0;
}

.contact-template__form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #B4303C;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
}

.contact-template__form .wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    border: 1px solid #B4303C;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

/* Optional: slightly tighter contact layout than login */

.contact-template .member-login-template__title {
    margin-bottom: 28px;
}

.contact-template .member-login-template__form {
    margin-top: 0;
}

@media only screen and (max-width: 600px) {
    .contact-template__text {
        margin-bottom: 30px;
    }

    .tar-contact-form input[type="submit"],
    .tar-contact-form .wpcf7-submit {
        min-width: 220px;
    }
}

/* ==========================================================================
   Contact Template Form
   Uses Member Login split-screen layout
   ========================================================================== */

.contact-template__text {
    max-width: 430px;
    margin: 0 auto 42px;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 25px;
    text-align: center;
}

.contact-template__text p {
    margin: 0;
}

.contact-template__form {
    width: 100%;
    margin: 0 auto;
}

.contact-template__form .wpcf7 {
    width: 100%;
}

.tar-contact-form {
    width: 100%;
}

.tar-contact-form p {
    margin: 0;
}

/* Field wrappers */

.tar-contact-form label {
    display: block;
    width: 100%;
    margin: 0 0 26px;
}

.tar-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Labels */

.tar-contact-form label > span:first-child {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 6px;
    text-align: center;
}

/* Inputs, select and textarea */

/* Force Contact Form 7 textarea styling on contact page */

.contact-template .contact-template__form textarea,
.contact-template .contact-template__form .wpcf7 textarea,
.contact-template .contact-template__form .wpcf7-textarea,
.contact-template .contact-template__form textarea.wpcf7-form-control,
.contact-template .contact-template__form textarea[name="your-message"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 150px !important;
    border: none !important;
    border-bottom: 1px solid #B4303C !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #2d1517 !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    padding: 8px 0 14px !important;
    margin: 0 !important;
    text-align: center !important;
    box-shadow: none !important;
    resize: vertical;
    appearance: none;
}

.tar-contact-form input[type="text"],
.tar-contact-form input[type="email"],
.tar-contact-form input[type="tel"],
.tar-contact-form input[type="url"],
.tar-contact-form select,
.tar-contact-form textarea {
    display: block;
    width: 100%;
    min-height: 44px;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 0 14px;
    text-align: center;
    box-shadow: none;
    appearance: none;
}

/* Dropdown */

.tar-contact-form select {
    cursor: pointer;
    padding-right: 28px;
    background-image:
        linear-gradient(45deg, transparent 50%, #B4303C 50%),
        linear-gradient(135deg, #B4303C 50%, transparent 50%);
    background-position:
        calc(100% - 16px) 50%,
        calc(100% - 10px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

/* Message field */

.tar-contact-form textarea {
    min-height: 150px;
    border: 1px solid #B4303C;
    padding: 14px 18px;
    margin-top: 8px;
    text-align: left;
    resize: vertical;
}

.tar-contact-form textarea::placeholder {
    text-align: left;
}

/* Focus */

.tar-contact-form input:focus,
.tar-contact-form select:focus,
.tar-contact-form textarea:focus {
    outline: none;
    border-color: #6B2649;
}

/* Placeholder text */

.tar-contact-form input::placeholder,
.tar-contact-form textarea::placeholder {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
}

/* Submit */

.tar-contact-form input[type="submit"],
.tar-contact-form .wpcf7-submit {
    width: auto;
    min-width: 260px;
    min-height: 44px;
    border: 1px solid #D0D0EC;
    border-radius: 999px;
    background: #D0D0EC;
    color: #6B2649;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 34px;
    display: block;
    margin: 28px auto 0;
}

.tar-contact-form input[type="submit"]:hover,
.tar-contact-form .wpcf7-submit:hover {
    background: transparent;
    color: #6B2649;
}

/* Spinner */

.contact-template__form .wpcf7-spinner {
    display: block;
    margin: 14px auto 0;
}

/* Validation */

.contact-template__form .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #B4303C;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
}

.contact-template__form .wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    border: 1px solid #B4303C;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
    --title-highlight-colour: #D2E1EF;

    background: #F9F6F0;
    color: #2d1517;
    padding: 92px 0 104px;
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}

.error-404__inner {
    width: 86%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.error-404__eyebrow {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.error-404__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 76px;
    line-height: 0.95;
    letter-spacing: -1px;
    margin: 0;
}

.error-404__text {
    max-width: 620px;
    margin: 30px auto 0;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
}

.error-404__text p {
    margin: 0;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 42px 0 0;
}

.error-404__button--outline {
    background: transparent !important;
    border-color: #6B2649 !important;
    color: #6B2649 !important;
}

.error-404__button--outline:hover {
    background: #6B2649 !important;
    color: #F9F6F0 !important;
}

/* 404 search */

.error-404__search {
    max-width: 760px;
    margin: 54px auto 0;
    padding-top: 34px;
    border-top: 1px solid var(--border-colour);
}

.error-404__search-label {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 18px;
    text-align: center;
}

.error-404__search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.error-404__search-form input[type="search"] {
    width: 100%;
    min-height: 44px;
    border: none;
    border-bottom: 1px solid #B4303C;
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    padding: 8px 0 12px;
    box-shadow: none;
}

.error-404__search-form input[type="search"]::placeholder {
    color: #2d1517;
    opacity: 0.55;
}

.error-404__search-form input[type="search"]:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

.error-404__search-submit {
    min-width: 180px;
    min-height: 44px;
    padding: 12px 28px;
}

/* 404 inline search results */

.error-404__results {
    margin-top: 42px;
    text-align: left;
}

.error-404__results-title {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 22px;
}

.error-404__results-list {
    display: grid;
    gap: 12px;
}

.error-404__result {
    border: 1px solid var(--border-colour);
    background: #F9F6F0;
}

.error-404__result-link {
    display: block;
    padding: 18px 22px;
    color: inherit;
    text-decoration: none;
}

.error-404__result-link:hover {
    background: #EEEDE5;
}

.error-404__result-type {
    display: block;
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.error-404__result-title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    margin: 0;
}

.error-404__no-results {
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 800px) {
    .error-404__search-form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .error-404__search-submit {
        width: 100%;
    }

    .error-404__result-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 800px) {
    .error-404 {
        padding: 72px 0 82px;
    }

    .error-404__inner {
        width: 88%;
    }

    .error-404__title {
        font-size: 52px;
    }

    .error-404__text {
        font-size: 16px;
        line-height: 24px;
    }

    .error-404__actions {
        display: grid;
        gap: 12px;
    }

    .error-404__button {
        width: 100%;
    }

    .error-404__search form {
        display: grid;
        gap: 16px;
    }

    .error-404__search input[type="submit"],
    .error-404__search button[type="submit"] {
        width: 100%;
    }
}

/* ==========================================================================
   CTA Panel Block
   ========================================================================== */

.cta-panel {
    background: #F9F6F0;
    color: #2d1517;
    padding: 86px 0;
	border-top: 1px solid #d8d0bf;
}

.cta-panel--striped {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(216, 208, 191, 0.26) 0,
            rgba(216, 208, 191, 0.26) 18px,
            transparent 18px,
            transparent 36px
        );
}

.cta-panel--plain {
    background: #F9F6F0;
}

.cta-panel__outer {
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
    background: #F9F6F0;
    padding: 74px 48px 68px;
}

.cta-panel__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.cta-panel__subtitle {
    color: #B4303C;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.cta-panel__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(46px, 3.8vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.5px;
    margin: 0;
}

.cta-panel__title p {
    margin: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
}

.cta-panel__text {
    max-width: 720px;
    margin: 34px auto 0;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 27px;
}

.cta-panel__text p {
    margin: 0 0 18px;
}

.cta-panel__text p:last-child {
    margin-bottom: 0;
}

.cta-panel__large-text {
    margin: 32px auto 0;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
}

.cta-panel__large-text p {
    margin: 0;
}

.cta-panel__button {
    margin: 42px auto 0;
}

@media only screen and (max-width: 900px) {
    .cta-panel {
        padding: 62px 0;
    }

    .cta-panel__outer {
        width: 88%;
        padding: 56px 28px 54px;
    }

    .cta-panel__title {
        font-size: clamp(40px, 11vw, 58px);
    }

    .cta-panel__text {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-panel__button {
        width: 100%;
    }
}

@media only screen and (max-width: 560px) {
    .cta-panel--striped {
        background:
            repeating-linear-gradient(
                90deg,
                #F9F6F0 0,
                #F9F6F0 14px,
                #EEEDE5 14px,
                #EEEDE5 28px
            );
    }

    .cta-panel__outer {
        padding: 48px 22px;
    }
}

/* ==========================================================================
   Split CTA / Form Block
   ========================================================================== */

.split-cta-form {
    --split-cta-bg: #F9F6F0;
    --split-cta-content-bg: #D2E1EF;
   --title-highlight-colour: #B4303C;
--title-highlight-text-colour: #ffffff;
    --split-cta-text: #2d1517;
    --split-cta-accent: #B4303C;

    display: grid;
    grid-template-columns: 40% 60%;
    background: var(--split-cta-bg);
    border-top: 1px solid var(--border-colour);
    border-bottom: 1px solid var(--border-colour);
}

.split-cta-form--reverse {
    grid-template-columns: 60% 40%;
}

.split-cta-form--reverse .split-cta-form__content {
    order: 2;
}

.split-cta-form--reverse .split-cta-form__panel {
    order: 1;
}

/* Colour themes */

.split-cta-form--blue {
    --split-cta-content-bg: #D2E1EF;
    --split-cta-text: #2d1517;
    --split-cta-accent: #B4303C;
    --title-highlight-colour: #B4303C;
    --title-highlight-text-colour: #F9F6F0;
}

.split-cta-form--purple {
    --split-cta-content-bg: #D0D0EC;
    --split-cta-text: #2d1517;
    --split-cta-accent: #6B2649;
    --title-highlight-colour: #6B2649;
    --title-highlight-text-colour: #F9F6F0;
}

.split-cta-form--neutral {
    --split-cta-content-bg: #EEEDE5;
    --split-cta-text: #2d1517;
    --split-cta-accent: #B4303C;
    --title-highlight-colour: #B4303C;
    --title-highlight-text-colour: #F9F6F0;
}

.split-cta-form--gold {
    --split-cta-content-bg: #D0C79C;
    --split-cta-text: #2d1517;
    --split-cta-accent: #6B2649;
    --title-highlight-colour: #6B2649;
    --title-highlight-text-colour: #F9F6F0;
}

.split-cta-form--red {
    --split-cta-content-bg: #B4303C;
    --split-cta-text: #F9F6F0;
    --split-cta-accent: #F9F6F0;
    --title-highlight-colour: #F9F6F0;
    --title-highlight-text-colour: #B4303C;
}

.split-cta-form--green {
    --split-cta-content-bg: #9C8C3C;
    --split-cta-text: #F9F6F0;
    --split-cta-accent: #F9F6F0;
    --title-highlight-colour: #F9F6F0;
    --title-highlight-text-colour: #9C8C3C;
}

.split-cta-form--burgundy {
    --split-cta-content-bg: #6B2649;
    --split-cta-text: #F9F6F0;
    --split-cta-accent: #F9F6F0;
    --title-highlight-colour: #9C8C3C;
    --title-highlight-text-colour: #F9F6F0;
}

/* Left content */

.split-cta-form__content {
    background: var(--split-cta-content-bg);
    padding: 64px 7vw 58px 5vw;
}

.split-cta-form__title {
    color: var(--split-cta-text);
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 52px;
    line-height: 0.9;
    margin: 0;
}

.split-cta-form__title p {
    margin: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
}

.split-cta-form__text {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--split-cta-text);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

.split-cta-form__text p {
    margin: 0 0 16px;
}

.split-cta-form__text p:last-child {
    margin-bottom: 0;
}

.split-cta-form__text strong {
    font-weight: 500;
}

/* Right panel */

.split-cta-form__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 5vw 58px;
}

.split-cta-form__form {
    width: 100%;
    max-width: 680px;
}

.split-cta-form__form form {
    width: 100%;
}

/* Form styling */

.split-cta-form__form input[type="text"],
.split-cta-form__form input[type="email"],
.split-cta-form__form input[type="tel"],
.split-cta-form__form input[type="url"],
.split-cta-form__form select,
.split-cta-form__form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--split-cta-accent);
    border-radius: 0;
    background: transparent;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 0;
    box-shadow: none;
}

.split-cta-form__form textarea {
    min-height: 120px;
    resize: vertical;
}

.split-cta-form__form input::placeholder,
.split-cta-form__form textarea::placeholder {
    color: var(--split-cta-accent);
    opacity: 1;
}

.split-cta-form__form input:focus,
.split-cta-form__form select:focus,
.split-cta-form__form textarea:focus {
    outline: none;
    border-bottom-color: #6B2649;
}

/* Buttons and download links */

.split-cta-form__form input[type="submit"],
.split-cta-form__form button[type="submit"],
.split-cta-form__form .button,
.split-cta-form__form a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 240px;
    min-height: 44px;
    border: 1px solid #5b1f32;
    border-radius: 999px;
    background: #5b1f32;
    color: #ffffff;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 13px 26px;
    margin: 26px auto 0;
    cursor: pointer;
}

.split-cta-form__form input[type="submit"]:hover,
.split-cta-form__form button[type="submit"]:hover,
.split-cta-form__form .button:hover,
.split-cta-form__form a.button:hover {
    background: transparent;
    color: #5b1f32;
}

/* Simple link list support */

.split-cta-form__form ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.split-cta-form__form li {
    margin: 0;
}

.split-cta-form__form li a:not(.button) {
    display: block;
    color: #2d1517;
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid var(--split-cta-accent);
    padding: 12px 0;
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .split-cta-form,
    .split-cta-form--reverse {
        grid-template-columns: 1fr;
    }

    .split-cta-form--reverse .split-cta-form__content,
    .split-cta-form--reverse .split-cta-form__panel {
        order: initial;
    }

    .split-cta-form__content,
    .split-cta-form__panel {
        padding: 48px 7vw;
    }

    .split-cta-form__title {
        font-size: 44px;
    }

    .split-cta-form__form input[type="submit"],
    .split-cta-form__form button[type="submit"],
    .split-cta-form__form .button,
    .split-cta-form__form a.button {
        width: 100%;
    }
}

/* ==========================================================================
   Testimonial Marquee Block
   ========================================================================== */

.testimonial-marquee {
    --testimonial-marquee-speed: 55s;

    background: #F9F6F0;
    color: #2d1517;
    overflow: hidden;
    padding: 96px 0;
    border-top: 1px solid var(--border-colour);
}

.testimonial-marquee__header {
    width: 86%;
    max-width: 980px;
    margin: 0 auto 54px;
    text-align: center;
}

.testimonial-marquee__title {
    color: #2d1517;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(48px, 4vw, 62px);
    line-height: 0.95;
    margin: 0;
}

.testimonial-marquee__text {
    max-width: 680px;
    margin: 26px auto 0;
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 25px;
}

.testimonial-marquee__text p {
    margin: 0;
}

.testimonial-marquee__rows {
    display: grid;
    gap: 26px;
}

.testimonial-marquee__row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-marquee__track {
    display: flex;
    width: max-content;
    gap: 26px;
    will-change: transform;
	transform: translateZ(0);
}

.testimonial-marquee__row--left .testimonial-marquee__track {
    animation: testimonial-marquee-left var(--testimonial-marquee-speed) linear infinite;
}

.testimonial-marquee__row--right .testimonial-marquee__track {
    animation: testimonial-marquee-right var(--testimonial-marquee-speed) linear infinite;
}

.testimonial-marquee__row:hover .testimonial-marquee__track {
    animation-play-state: paused;
}

.testimonial-marquee__card {
    flex: 0 0 380px;
    min-height: 210px;
    border: 1px solid var(--border-colour);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(45, 21, 23, 0.06);
    padding: 26px 28px;
}

.testimonial-marquee__person {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 0 0 22px;
}

.testimonial-marquee__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
    background: #EEEDE5;
}

.testimonial-marquee__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-marquee__name {
    color: #2d1517;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    margin: 0 0 2px;
}

.testimonial-marquee__role {
    color: rgba(45, 21, 23, 0.72);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 19px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-marquee__quote {
    color: #2d1517;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 27px;
    margin: 0;
}

/* Soft edge fade like the reference */

.testimonial-marquee__row::before,
.testimonial-marquee__row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-marquee__row::before {
    left: 0;
    background: linear-gradient(90deg, #F9F6F0 0%, rgba(249, 246, 240, 0) 100%);
}

.testimonial-marquee__row::after {
    right: 0;
    background: linear-gradient(270deg, #F9F6F0 0%, rgba(249, 246, 240, 0) 100%);
}

/* Animations */

@keyframes testimonial-marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 13px));
    }
}

@keyframes testimonial-marquee-right {
    from {
        transform: translateX(calc(-50% - 13px));
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive */

@media only screen and (max-width: 900px) {
    .testimonial-marquee {
        padding: 72px 0;
    }

    .testimonial-marquee__header {
        width: 88%;
        margin-bottom: 42px;
    }

    .testimonial-marquee__card {
        flex-basis: 320px;
        min-height: 200px;
        padding: 22px 24px;
    }

    .testimonial-marquee__quote {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-marquee__row::before,
    .testimonial-marquee__row::after {
        width: 60px;
    }
}

@media only screen and (max-width: 560px) {
    .testimonial-marquee__card {
        flex-basis: 280px;
    }

    .testimonial-marquee__track {
        gap: 18px;
    }

    @keyframes testimonial-marquee-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 9px));
        }
    }

    @keyframes testimonial-marquee-right {
        from {
            transform: translateX(calc(-50% - 9px));
        }

        to {
            transform: translateX(0);
        }
    }
}



/** OLD CODE BELOW **/


.full-screen-header-two {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
.full-screen-header-two.show-overlay::before {
    content: " ";
    display: block;
    width: 120%;
    height: 553px;
    position: absolute;
    left: -10%;
    opacity: 59%;
    z-index: 10;
    filter: blur(50px);
    bottom: -326px;
}
.full-screen-header-two.show-overlay.overlay-colour-1::before {
    background: #8c8e65;
}
.full-screen-header-two.show-overlay.overlay-colour-2::before {
    background: #ba8a49;
}
.full-screen-header-two.show-overlay.overlay-colour-3::before {
    background: #9e522e;
}
.full-screen-header-two.show-overlay.overlay-colour-4::before {
    background: #4f351c;
}
.full-screen-header-two.show-overlay.overlay-colour-5::before {
    background: #54491a;
}
.full-screen-header-two.show-overlay.overlay-colour-6::before {
    background: #fff4ed;
}
.full-screen-header-two.show-overlay.overlay-colour-7::before {
    background: #b78989;
}
.full-screen-header-two.show-overlay.overlay-colour-8::before {
    background: #ac886d;
}
.full-screen-header-two .images {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.full-screen-header-two .images img {
    object-fit: cover;
    width: 50%;
    height: 100%;
}
.full-screen-header-two .content {
    margin: auto auto 46px;
    position: relative;
    width: 90%;
    z-index: 20;
    text-align: center;
    max-width: 1200px;
}
.full-screen-header-two .content h1 {
    font-size: 86px;
    line-height: 82px;
    letter-spacing: -4.3px;
    color: #fff4ed;
    margin: 0 0 22px;
}
.full-screen-header-two .content .subtitle {
    font-size: 20px;
    line-height: 25px;
    color: #fff4ed;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    max-width: 855px;
    margin: 0 auto 28px;
}

.full-screen-header-two .content .text p {
    font-size: 28px;
    line-height: 30px;
    color: #fff4ed;
    font-family: "Sunday Bloom";
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.full-screen-header-two .content .button {
    display: block;
    width: fit-content;
    min-width: 460px;
    margin: 28px auto 0;
    border: 1px solid #fff4ed;
    border-radius: 999px;
    color: #fff4ed;
    font-size: 18px;
    line-height: 33px;
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    text-align: center;
    padding: 7px 26px;
}
.full-screen-header-collage {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
.full-screen-header-collage.show-overlay::before {
    content: " ";
    display: block;
    width: 120%;
    height: 553px;
    position: absolute;
    left: -10%;
    opacity: 59%;
    z-index: 10;
    filter: blur(50px);
    bottom: -326px;
}
.full-screen-header-collage.show-overlay.overlay-colour-1::before {
    background: #8c8e65;
}
.full-screen-header-collage.show-overlay.overlay-colour-2::before {
    background: #ba8a49;
}
.full-screen-header-collage.show-overlay.overlay-colour-3::before {
    background: #9e522e;
}
.full-screen-header-collage.show-overlay.overlay-colour-4::before {
    background: #4f351c;
}
.full-screen-header-collage.show-overlay.overlay-colour-5::before {
    background: #54491a;
}
.full-screen-header-collage.show-overlay.overlay-colour-6::before {
    background: #fff4ed;
}
.full-screen-header-collage.show-overlay.overlay-colour-7::before {
    background: #b78989;
}
.full-screen-header-collage.show-overlay.overlay-colour-8::before {
    background: #ac886d;
}
.full-screen-header-collage .images {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.full-screen-header-collage .images .image-1 {
    width: 17%;
    position: absolute;
    left: -8%;
    bottom: 14%;
}
.full-screen-header-collage .images .image-2 {
    width: 17%;
    position: absolute;
    left: 3%;
    bottom: 5%;
    z-index: 2;
}
.full-screen-header-collage .images .image-3 {
    width: 24%;
    position: absolute;
    left: 15%;
    bottom: 10%;
    z-index: 1;
}
.full-screen-header-collage .images .image-4 {
    width: 31%;
    position: absolute;
    left: 35%;
    bottom: 0;
}
.full-screen-header-collage .images .image-5 {
    width: 17%;
    position: absolute;
    left: 62%;
    bottom: 12%;
    z-index: 1;
}
.full-screen-header-collage .images .image-6 {
    width: 17%;
    position: absolute;
    left: 76%;
    bottom: 42%;
    z-index: 1;
}
.full-screen-header-collage .images .image-7 {
    width: 26%;
    position: absolute;
    left: 76%;
    z-index: 1;
    bottom: 0;
}
.full-screen-header-collage .content {
    margin: auto auto 46px;
    position: relative;
    width: 90%;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    z-index: 20;
}
.full-screen-header-collage .content h1 {
    font-size: 86px;
    line-height: 103px;
    letter-spacing: -4.3px;
    color: #4f351c;
    margin: 0 0 18px;
}
.full-screen-header-collage .content p {
    font-size: 20px;
    line-height: 25px;
    color: #4f351c;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
}
.full-screen-header-split {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #ba8a49;
}
.full-screen-header-split .image {
    width: 50%;
    height: 100%;
}
.full-screen-header-split .image img {
    height: 100%;
    object-fit: cover;
}
.full-screen-header-split .content {
    width: 50%;
    display: flex;
}
.full-screen-header-split .content .inner {
    margin: auto;
    text-align: center;
    max-width: 556px;
    width: 90%;
}
.full-screen-header-split .content .inner h1 {
    font-size: 70px;
    line-height: 75px;
    color: #fff4ed;
    letter-spacing: -3.5px;
    margin: 0 0 30px;
}
.full-screen-header-split .content .inner p {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 20px;
    line-height: 28px;
    font-family: "OTR Old Sock";
    max-width: 456px;
    margin-left: auto;
    margin-right: auto;
}
.home-intro {
    background: #dfd3b7;
    padding: 172px 0 168px;
    position: relative;
}
.home-intro .inner {
    text-align: center;
    max-width: 809px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    z-index: 1;
}
.home-intro .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    color: #54491a;
    margin: 0 0 36px;
}
.home-intro .inner p {
    font-size: 24px;
    line-height: 25.2px;
    color: #9e522e;
    font-family: "Sunday Bloom";
    max-width: 556px;
    margin-left: auto;
    margin-right: auto;
}
.home-intro .inner .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #ba8a49;
    border: 1px solid #ba8a49;
    border-radius: 26px;
    display: block;
    width: fit-content;
    margin: 33px auto 0;
    font-family: "OTR Old Sock";
    padding: 8px 20px;
    min-width: 439px;
}
.home-intro .image-1 {
    position: absolute;
    max-width: 273px;
    width: 20%;
    bottom: 150px;
    left: 32px;
}
.home-intro .image-2 {
    position: absolute;
    max-width: 403px;
    width: 30%;
    left: 113px;
    bottom: -46px;
}
.home-intro .image-3 {
    position: absolute;
    max-width: 290px;
    width: 16%;
    right: 0;
    top: 60px;
}
.testimonials-style-1 {
    padding: 71px 0 96px;
    position: relative;
}
.testimonials-style-1 .inner {
    max-width: 1026px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.testimonials-style-1 .inner .testimonials {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 0 50px;
}
.testimonials-style-1 .inner .testimonials > div {
    max-width: 470px;
    width: 48%;
    height: inherit;
}
.testimonials-style-1 .inner .testimonials > div .content {
    padding: 39px 30px 16px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    height: 100%;
}
.testimonials-style-1 .inner .testimonials > div .content p {
    color: #fff4ed;
    font-size: 21px;
    line-height: 25.2px;
    max-width: 291px;
    font-family: "Sunday Bloom";
}
.testimonials-style-1 .inner .testimonials > div .content p.name {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    margin: 94px 0 0 auto;
    font-family: "OTR Old Sock";
}
.testimonials-style-1 .inner .testimonials > div img {
    position: absolute;
}
.testimonials-style-1 .inner .testimonials > div:nth-of-type(2n + 1) .content {
    background: #b78989;
}
.testimonials-style-1 .inner .testimonials > div:nth-of-type(2n + 1) img {
    max-width: 258px;
    bottom: 0;
    left: -11%;
    bottom: -104px;
}
.testimonials-style-1 .inner .testimonials > div:nth-of-type(2n + 2) .content {
    background: #ba8a49;
}
.testimonials-style-1 .inner .testimonials > div:nth-of-type(2n + 2) img {
    max-width: 218px;
    right: -17%;
    top: -71px;
}
.testimonials-style-1 .inner > p {
    text-align: center;
    font-size: 18px;
    line-height: 23px;
    max-width: 541px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.testimonials-style-2 {
    background: #8c8e65;
    padding: 131px 0;
    position: relative;
}
.testimonials-style-2 .inner {
    background: #dfd3b7;
    border-radius: 20px;
    max-width: 847px;
    width: 90%;
    margin: 0 auto;
    padding: 62px 0 36px;
    text-align: center;
    position: relative;
}
.testimonials-style-2 .inner .testimonial {
    max-width: 673px;
    margin: 0 auto;
    width: 90%;
}
.testimonials-style-2 .inner p {
    font-size: 18px;
    line-height: 20px;
    color: #54491a;
}
.testimonials-style-2 .inner p.name {
    color: #9e522e;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    margin-top: 39px;
    font-family: "OTR Old Sock";
}
.testimonials-style-2 .image-1 {
    position: absolute;
    max-width: 201px;
    top: -32px;
    left: -147px;
}
.testimonials-style-2 .image-2 {
    position: absolute;
    max-width: 201px;
    left: 0;
    bottom: 158px;
}
.testimonials-style-2 .image-3 {
    position: absolute;
    max-width: 201px;
    right: 0;
    top: 191px;
}
.testimonials-style-2 .image-4 {
    position: absolute;
    max-width: 201px;
    right: -88px;
    bottom: -76px;
}
.testimonials-style-3 {
    padding: 105px 0 86px;
    position: relative;
    overflow: hidden;
}
.testimonials-style-3 .inner {
    position: relative;
    max-width: 730px;
    margin: 0 auto;
    width: 90%;
}
.testimonials-style-3 .inner .testimonial {
    background: #b78989;
    padding: 31px 41px 30px;
}
.testimonials-style-3 .inner p {
    color: #fff4ed;
    font-size: 21px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.testimonials-style-3 .inner p.name {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    font-family: "OTR Old Sock";
    margin: 45px 0 0 0;
}
.testimonials-style-3 .image-1 {
    max-width: 290px;
    position: absolute;
    z-index: -1;
    bottom: -86px;
    left: -233px;
}
.testimonials-style-3 .image-2 {
    max-width: 218px;
    position: absolute;
    top: -105px;
    right: -170px;
    z-index: -1;
}
.testimonials-style-4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #ba8a49;
}
.testimonials-style-4 .image {
    width: 50%;
    line-height: 0;
    position: relative;
    overflow: hidden;
}
.testimonials-style-4 .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    object-fit: cover;
}
.testimonials-style-4 .content {
    width: 50%;
    display: flex;
    padding: 80px 75px 149px 84px;
}
.testimonials-style-4 .content .inner {
    color: #fff4ed;
    margin: auto 0;
    max-width: 524px;
}
.testimonials-style-4 .content .inner h2 {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 0 23px;
}
.testimonials-style-4 .content .inner p {
    font-size: 18px;
    line-height: 25px;
    max-width: 498px;
}
.testimonials-style-4 .content .inner p.sub-title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    font-family: "OTR Old Sock";
    margin: 0 auto 27px;
    max-width: 556px;
}
.testimonials-style-4 .content .inner .testimonial {
    margin: 49px 0 0 0;
}
.testimonials-style-4 .content .inner .testimonial p {
    font-size: 21px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.about-links {
    background: #dfd3b7;
    padding: 69px 0 73px;
}
.about-links .inner {
    width: 90%;
    margin: 0 auto;
    max-width: 914px;
}
.about-links .inner h2 {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 0 40px;
    color: #4f351c;
}
.about-links .inner .links {
    display: flex;
    justify-content: space-between;
}
.about-links .inner .links a {
    margin: 0;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 26px;
    font-size: 18px;
    line-height: 18px;
    font-family: "OTR Old Sock";
    width: 48%;
    text-align: center;
    min-height: 51px;
    padding: 6px 20px;
    display: flex;
}
.about-links .inner .links a span {
    margin: auto;
}
.about-links .inner .links a:nth-of-type(2n + 1) {
    color: #9e522e;
    border-color: #9e522e;
}
.about-links .inner .links a:nth-of-type(2n + 2) {
    color: #b78989;
    border-color: #b78989;
}
.about-more-info {
    background-size: 33.3333333333%;
    padding: 132px 0 135px;
}
.about-more-info .inner {
    max-width: 847px;
    margin: 0 auto;
    width: 90%;
    background: #dfd3b7;
    border-radius: 19px;
    position: relative;
    padding: 32px 81px 66px;
}
.about-more-info .inner h2 {
    text-align: center;
    font-size: 66.57px;
    line-height: 79.89px;
    letter-spacing: -3.33px;
    color: #363d1b;
    margin: 0 0 21px;
}
.about-more-info .inner p {
    color: #54491a;
    font-size: 18px;
    line-height: 20px;
    max-width: 645px;
}
.about-more-info .inner .graphic {
    position: absolute;
    max-width: 94px;
    right: -59px;
    bottom: -24px;
}
.home-about {
    background: #54491a;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.home-about .images {
    width: 50%;
    position: relative;
    line-height: 0;
    display: flex;
}
.home-about .images .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about .images .image {
    z-index: 1;
    margin: auto;
    max-width: 467px;
    position: relative;
    width: 90%;
}
.home-about .images .image .front-image {
    border: 10px solid #ffffff;
    margin: 110px 0;
}
.home-about .images .image .graphic-1 {
    position: absolute;
    max-width: 128px;
    right: -59px;
    top: 52px;
}
.home-about .images .image .graphic-2 {
    position: absolute;
    max-width: 123px;
    bottom: 79px;
    left: -76px;
}
.home-about .content {
    width: 50%;
    display: flex;
    padding: 52px 55px 46px 71px;
}
.home-about .content .inner {
    margin: auto 0;
    max-width: 557px;
    width: 80%;
}
.home-about .content h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    color: #fff4ed;
    margin: 0 0 42px;
}
.home-about .content p {
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    max-width: 501px;
}
.home-about .content p.sub-title {
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 24px;
    max-width: 487px;
}
.home-about .content p.highlighted-text {
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
}
.home-about .content .links {
    display: flex;
    flex-direction: column;
    margin: 54px 0 0 0;
}
.home-about .content .links .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #fff4ed;
    border: 1px solid #fff4ed;
    border-radius: 26px;
    margin: 0 0 15px;
    text-align: center;
    width: fit-content;
    font-family: "OTR Old Sock";
    padding: 5px 26px;
    width: 100%;
    max-width: 463px;
}
.home-about .content .links a:last-of-type {
    margin: 0;
}
.faq-dropdown {
    position: relative;
    overflow: hidden;
    padding: 132px 0 131px;
}
.faq-dropdown > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}
.faq-dropdown .inner {
    background: #dfd3b7;
    border-radius: 19px;
    max-width: 847px;
    margin: 0 auto;
    position: relative;
    padding: 32px 62px 54px;
    width: 90%;
}
.faq-dropdown .inner h2 {
    text-align: center;
    font-size: 66.57px;
    line-height: 79.89px;
    letter-spacing: -3.33px;
    margin: 0 0 20px;
    color: #363d1b;
}
.faq-dropdown .inner > p {
    text-align: center;
    font-size: 24px;
    line-height: 25.2px;
    color: #8c8e65;
    font-family: "Sunday Bloom";
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
}
.faq-dropdown .inner label {
    text-align: center;
    display: block;
    margin: 25px 0 27px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    color: #ba8a49;
    font-family: "OTR Old Sock";
}
.faq-dropdown .inner select {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #9d522e;
    background: transparent;
    text-transform: uppercase;
    color: #9d522e;
    font-size: 16px;
    line-height: 24px;
    font-family: "OTR Old Sock";
    padding: 15px 70px 15px 21px;
    cursor: pointer;
    background-image: url("/wp-content/themes/inloveandadventure2026/assets/images/light-brown-arrow-down.png");
    background-size: 31px;
    background-repeat: no-repeat;
    background-position: center right 19px;
    padding: 15px 70px 15px 21px;
}
.faq-dropdown .inner .answers {
    padding: 27px 0 0 19px;
}
.faq-dropdown .inner .answers > div {
    display: none;
}
.faq-dropdown .inner .answers > div p {
    color: #54491a;
    font-size: 18px;
    line-height: 20px;
    max-width: 645px;
}
.faq-dropdown .inner .answers > div:first-of-type {
    display: block;
}
.faq-dropdown .inner .graphic {
    position: absolute;
    max-width: 94px;
    bottom: -54px;
    right: -42px;
}
.home-locations {
    padding: 98px 0 115px;
    text-align: center;
    position: relative;
}
.home-locations .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    z-index: 1;
}
.home-locations .inner h2 {
    color: #54491a;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 auto 18px;
    max-width: 692px;
}
.home-locations .inner p {
    color: #54491a;
    font-size: 18px;
    line-height: 20px;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
}
.home-locations .inner p.highlighted-text {
    color: #ba8a49;
    font-size: 24px;
    line-height: 25.2px;
    margin-top: 36px;
    font-family: "Sunday Bloom";
}
.home-locations .inner p.locations-title {
    color: #9d522e;
    font-size: 22px;
    line-height: 24px;
    margin-top: 57px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
}
.home-locations .inner .locations {
    border-top: 1px solid #8c8e65;
    border-bottom: 1px solid #8c8e65;
    padding: 40px 0 13px;
}
.home-locations .inner .locations ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.home-locations .inner .locations ul li {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    color: #8c8e65;
    margin: 0 0 23px;
    width: 33%;
    font-family: "OTR Old Sock";
}
.home-locations .image-1 {
    max-width: 274px;
    position: absolute;
    top: -48px;
    left: 0;
    line-height: 0;
}
.home-locations .image-1 .graphic {
    max-width: 134px;
    position: absolute;
    bottom: -94px;
    right: 27px;
}
.home-locations .image-2 {
    border: 10px solid #e0d3b7;
    max-width: 274px;
    position: absolute;
    right: -14px;
    top: 423px;
}
.home-inclusivity {
    background: #ba8a49;
    padding: 68px 0;
}
.home-inclusivity .inner {
    max-width: 1142px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    color: #fff4ed;
    justify-content: space-between;
}
.home-inclusivity .inner .column {
    line-height: 0;
}
.home-inclusivity .inner .column.left {
    max-width: 535px;
    width: 47%;
}
.home-inclusivity .inner .column.left img {
    margin: 0 0 54px;
}
.home-inclusivity .inner .column.right {
    max-width: 538px;
    width: 48%;
}
.home-inclusivity .inner .column.right img {
    margin: 0 0 35px;
}
.home-inclusivity .inner .column h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    text-align: right;
    margin: 0 0 65px;
}
.home-inclusivity .inner .column p {
    font-size: 18px;
    line-height: 23px;
}
.home-inclusivity .inner .column p.highlighted-text {
    font-size: 36px;
    line-height: 38px;
    text-align: right;
    margin: 0 0 42px auto;
    font-family: "Sunday Bloom";
    max-width: 499px;
}
.home-inclusivity .inner .column .button {
    font-size: 18px;
    line-height: 33px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid #fff4ed;
    color: #fff4ed;
    border-radius: 26px;
    margin: 0 0 0 auto;
    display: block;
    font-family: "OTR Old Sock";
    padding: 5px 20px;
}
.home-plan {
    background: #8c8e65;
    padding: 97px 0 119px;
}
.home-plan .inner {
    max-width: 1142px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.home-plan .inner::before {
    content: " ";
    background: #54491a;
    width: 1px;
    height: 133%;
    display: block;
    position: absolute;
    bottom: -319px;
    left: -56px;
}
.home-plan .inner .graphic {
    position: absolute;
    max-width: 213px;
    top: -65px;
    left: -138px;
}
.home-plan .inner .content {
    width: 55%;
    margin: 51px 0 0 0;
    position: relative;
}
.home-plan .inner .content h2 {
    color: #fff4ed;
    font-size: 45px;
    line-height: 40px;
    letter-spacing: -2.25px;
    margin: 0 0 31px;
    max-width: 512px;
}
.home-plan .inner .content p {
    color: #fff4ed;
    font-size: 16px;
    line-height: 20px;
}
.home-plan .inner .content p.highlighted-text {
    font-size: 32px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.home-plan .inner .content .columns {
    display: flex;
    margin: 31px 0 0 0;
}
.home-plan .inner .content .columns .column {
    max-width: 291px;
}
.home-plan .inner .content .columns .column.left {
    margin: 0 40px 0 0;
}
.home-plan .inner .images {
    width: 45%;
    position: relative;
}
.home-plan .inner .images .image-1 {
    border: 10px solid #fff4ed;
    max-width: 369px;
    margin: 0 0 0 auto;
    display: block;
    width: 72%;
}
.home-plan .inner .images .image-2 {
    max-width: 290px;
    width: 57%;
    position: absolute;
    top: 32vh;
    right: -22%;
}
.home-freebie {
    background: #4f351c;
    padding: 46px 0 45px;
}
.home-freebie .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1176px;
    width: 90%;
    margin: 0 auto;
}
.home-freebie .inner .images {
    width: 53%;
    line-height: 0;
    position: relative;
    margin: 0 0 -143px;
}
.home-freebie .inner .images .image-1 {
    margin: 0 0 23px;
}
.home-freebie .inner .images .graphic {
    max-width: 143px;
    position: absolute;
    right: -72px;
    bottom: 50px;
}
.home-freebie .inner .content {
    width: 47%;
    border-top: 1px solid #fff4ed;
    padding: 52px 0 0 61px;
    margin: 15px 0 0 0;
}
.home-freebie .inner .content h2 {
    font-size: 40px;
    line-height: 45px;
    color: #dfd3b7;
    letter-spacing: -2px;
    margin: 0 0 33px;
}
.home-freebie .inner .content p {
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
}
.home-freebie .inner .content p.sub-title {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 33px;
}
.home-freebie .inner .content form {
    border-top: 1px solid #b78989;
    margin: 33px 0 0 0;
}
.home-freebie .inner .content input[type="text"],
.home-freebie .inner .content input[type="email"] {
    border: none;
    background: transparent;
    font-family: "OTR Old Sock";
    color: #b78989;
    font-size: 16px;
    line-height: 24px;
    border-left: 1px solid #b78989;
    border-right: 1px solid #b78989;
    border-bottom: 1px solid #b78989;
    width: 100%;
    padding: 15px 17px;
}
.home-freebie .inner .content input[type="text"]::placeholder,
.home-freebie .inner .content input[type="email"]::placeholder {
    color: #b78989;
}
.home-freebie .inner .content button {
    font-size: 0;
    border: none;
    background: transparent;
    width: 45px;
    height: 45px;
    padding: 0;
    margin: 20px 0 0 auto;
    display: block;
    cursor: pointer;
}
.home-resources {
    padding: 194px 0 99px;
}
.home-resources .inner {
    text-align: center;
    max-width: 1143px;
    width: 90%;
    margin: 0 auto;
}
.home-resources .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 auto 42px;
    max-width: 692px;
    color: #54491a;
}
.home-resources .inner .columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.home-resources .inner .columns .column {
    width: 33.3333333333%;
    border-bottom: 1px solid #9d522e;
    padding: 0 0 10px;
}
.home-resources .inner .columns .column h3 {
    border-bottom: 1px solid #9d522e;
    text-transform: uppercase;
    color: #9e522e;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 40px;
    padding: 0 20px 32px;
    font-family: "OTR Old Sock";
}
.home-resources .inner .columns .column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.home-resources .inner .columns .column ul li {
    margin: 0 0 23px;
    padding: 0 40px;
}
.home-resources .inner .columns .column ul li a {
    color: #b78989;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    font-family: "OTR Old Sock";
}
.home-cta {
    background: #8c8e65;
    padding: 76px 0 63px;
    position: relative;
}
.home-cta .inner h2 {
    color: #fff4ed;
    font-size: 65px;
    line-height: 50px;
    letter-spacing: -3.25px;
    text-align: center;
    max-width: 1142px;
    width: 90%;
    margin: 0 auto 67px;
}
.home-cta .inner .link {
    border-top: 1px solid #fff4ed;
    max-width: 1142px;
    width: 90%;
    margin: 0 auto;
    padding: 26px 0 0 0;
}
.home-cta .inner .link a {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: right;
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
    font-family: "OTR Old Sock";
}
.home-cta .inner .images {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    margin: 0 0 60px;
}
.home-cta .inner .images .image-1 {
    width: 17%;
    position: absolute;
    left: -8%;
    bottom: 14%;
}
.home-cta .inner .images .image-2 {
    width: 17%;
    position: absolute;
    left: 3%;
    bottom: 5%;
    z-index: 2;
}
.home-cta .inner .images .image-3 {
    width: 24%;
    position: absolute;
    left: 15%;
    bottom: 10%;
    z-index: 1;
}
.home-cta .inner .images .image-4 {
    width: 31%;
    position: absolute;
    left: 37%;
    bottom: 0;
}
.home-cta .inner .images .image-5 {
    width: 17%;
    position: absolute;
    left: 64%;
    bottom: 12%;
    z-index: 1;
}
.home-cta .inner .images .image-6 {
    width: 17%;
    position: absolute;
    left: 80%;
    bottom: 56%;
    z-index: 1;
}
.home-cta .inner .images .image-7 {
    width: 26%;
    position: absolute;
    left: 80%;
    z-index: 1;
    bottom: 0;
}
.process {
    background: #54491a;
    padding: 84px 0 58px;
}
.process .inner {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
}
.process .inner h2 {
    color: #fff4ed;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    max-width: 771px;
    margin: 0 0 60px;
}
.process .inner .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #fff4ed;
    padding: 0 0 50px;
    margin: 0 0 27px;
}
.process .inner .steps > div {
    width: 33.3333333333%;
    padding: 37px 53px 41px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.process .inner .steps > div:nth-of-type(3n + 1) {
    background: #b78989;
    color: #fff4ed;
}
.process .inner .steps > div:nth-of-type(3n + 2) {
    background: #dfd3b7;
    color: #9e522e;
}
.process .inner .steps > div:nth-of-type(3n + 3) {
    background: #ba8a49;
    color: #fff4ed;
}
.process .inner .steps > div p {
    font-size: 18px;
    line-height: 20px;
}
.process .inner .steps > div p.number {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    font-family: "mandrel-condensed";
    margin: 0 0 60px;
}
.process .inner .steps > div h3 {
    font-size: 28px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    margin: 0 0 18px;
}
.process .inner .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    color: #fff4ed;
    margin: 0 0 0 auto;
    display: block;
    width: fit-content;
    font-family: "OTR Old Sock";
}
.home-portfolio {
    padding: 86px 0 89px;
    background: #dfd3b7;
}
.home-portfolio .inner {
    max-width: 1143px;
    width: 90%;
    margin: 0 auto;
}
.home-portfolio .inner h2 {
    text-align: center;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    margin: 0 auto 51px;
    max-width: 771px;
    color: #4f351c;
}
.home-portfolio .inner .posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 43px;
}
.home-portfolio .inner .posts > div {
    max-width: 255px;
    width: 23%;
    position: relative;
}
.home-portfolio .inner .posts > div a {
    display: block;
    line-height: 0;
}
.home-portfolio .inner .posts > div h3 {
    position: absolute;
    max-width: calc(100% - 28px);
    bottom: 9px;
    left: 14px;
    color: #dfd3b7;
    font-size: 16px;
    line-height: 16px;
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    opacity: 0;
    transition: 0.3s;
}
.home-portfolio .inner .posts > div:hover h3 {
    opacity: 1;
}
.home-portfolio .inner p {
    color: #4f351c;
    font-size: 24px;
    line-height: 25.2px;
    text-align: center;
    max-width: 522px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Sunday Bloom";
}
.home-portfolio .inner .button {
    color: #9d522e;
    border: 1px solid #9d522e;
    border-radius: 26px;
    font-size: 18px;
    line-height: 33px;
    text-transform: uppercase;
    margin: 38px auto 0;
    width: fit-content;
    display: block;
    min-width: 354px;
    text-align: center;
    font-family: "OTR Old Sock";
    padding: 5px 20px;
}
.home-why {
    background: #ac886d;
    padding: 58px 0 52px;
}
.home-why .inner {
    max-width: 1142px;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #50351c;
    padding: 83px 0 0 0;
    position: relative;
}
.home-why .inner .graphic {
    max-width: 142px;
    position: absolute;
    right: 46px;
    top: 54px;
}
.home-why .inner .show-points {
    position: absolute;
    right: 0;
    top: 28px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
}
.home-why .inner .show-points img {
    width: 46px;
}
.home-why .inner .show-points.show {
    bottom: 144px;
    top: auto;
}
.home-why .inner h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    color: #fff4ed;
    margin: 0 0 42px;
    max-width: 475px;
}
.home-why .inner p {
    color: #4f351c;
    font-size: 18px;
    line-height: 24px;
    max-width: 433px;
    font-family: "OTR Old Sock";
}
.home-why .inner p.highlighted-text {
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
    margin: 0 0 26px;
}
.home-why .inner .points {
    border-bottom: 1px solid #50351c;
    margin: 0 0 49px;
    padding: 49px 0 31px 0;
    display: none;
}
.home-why .inner .points ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.home-why .inner .points ul li {
    color: #fff4ed;
    margin: 0 0 27px;
    font-size: 16px;
    line-height: 16px;
    font-family: "OTR Old Sock";
    width: 50%;
    max-width: 504px;
    padding: 0 20px 0 0;
}
.home-why .inner .button {
    border: 1px solid #fff4ed;
    border-radius: 26px;
    color: #fff4ed;
    font-size: 18px;
    line-height: 33px;
    text-align: center;
    display: block;
    width: fit-content;
    min-width: 455px;
    text-transform: uppercase;
    margin: 32px 0 0 0;
    font-family: "OTR Old Sock";
    padding: 5px 20px;
}
.contact-dropdown {
    padding: 92px 0 113px;
}
.contact-dropdown .inner {
    max-width: 801px;
    width: 90%;
    margin: 0 auto;
}
.contact-dropdown .inner h2 {
    color: #54491a;
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    max-width: 692px;
    margin: 0 auto 37px;
}
.contact-dropdown .inner p {
    color: #9e522e;
    font-size: 24px;
    line-height: 25.2px;
    text-align: center;
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Sunday Bloom";
}
.contact-dropdown .inner > button {
    border: none;
    background: none;
    color: #ba8a49;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin: 39px auto 0;
    display: block;
    max-width: 400px;
    cursor: pointer;
    padding: 0;
    font-family: "OTR Old Sock";
}
.contact-dropdown .inner > button img {
    display: block;
    width: 46px;
    margin: 27px auto 0;
}
.contact-dropdown .inner form {
    border-top: 1px solid #54491a;
    display: none;
    margin: 39px 0 0 0;
}
.contact-dropdown .inner form div {
    padding: 0;
}
.contact-dropdown .inner form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.contact-dropdown .inner form input[type="text"],
.contact-dropdown .inner form input[type="email"] {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 15px 17px;
    width: 100%;
    border-radius: 0;
}
.contact-dropdown .inner form input[type="text"]::placeholder,
.contact-dropdown .inner form input[type="email"]::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.contact-dropdown .inner form input[type="submit"] {
    text-transform: uppercase;
    color: #54491a;
    font-size: 18px;
    line-height: 24px;
    border: none;
    padding: 0;
    background: transparent;
    margin: 28px 0 0 auto;
    display: block;
    cursor: pointer;
    font-family: "OTR Old Sock";
}
.contact-dropdown .inner form textarea {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 19px 17px 11px;
    width: 100%;
    height: 59px;
    margin: -4px 0 0 0;
    border-radius: 0;
}
.contact-dropdown .inner form textarea::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.contact-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-block .images {
    width: 50%;
    position: relative;
    height: inherit;
}
.contact-block .images img {
    height: 100%;
    object-fit: cover;
}
.contact-block .images img.image-1 {
    height: 47%;
}
.contact-block .images img.image-2 {
    height: 26.5%;
}
.contact-block .images img.image-3 {
    height: 26.5%;
}
.contact-block .images .inner {
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    line-height: 0;
    height: 100%;
}
.contact-block .content {
    width: 50%;
    padding: 147px 0 79px 0;
}
.contact-block .content .inner {
    max-width: 556px;
    width: 84%;
    margin: 0 auto;
}
.contact-block .content .inner h1 {
    color: #4f351c;
    font-size: 70px;
    line-height: 75px;
    letter-spacing: -3.5px;
    margin: 0 0 43px;
    text-align: center;
}
.contact-block .content .inner p {
    color: #4f351c;
    font-size: 18px;
    line-height: 25px;
    max-width: 501px;
}
.contact-block .content .inner p.sub-title {
    text-transform: uppercase;
    margin: 0 0 28px;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    font-family: "OTR Old Sock";
    margin-left: auto;
    margin-right: auto;
}
.contact-block .content .inner p.form-text {
    font-size: 24px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.contact-block .content .inner .after-form-text p {
    font-size: 24px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.contact-block .content .inner form {
    border-top: 1px solid #54491a;
    margin: 39px 0 0 0;
    max-width: 529px;
}
.contact-block .content .inner form div {
    padding: 0;
}
.contact-block .content .inner form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.contact-block .content .inner form input[type="text"],
.contact-block .content .inner form input[type="email"] {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 15px 17px;
    width: 100%;
}
.contact-block .content .inner form input[type="text"]::placeholder,
.contact-block .content .inner form input[type="email"]::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.contact-block .content .inner form input[type="submit"] {
    text-transform: uppercase;
    color: #54491a;
    font-size: 18px;
    line-height: 24px;
    border: none;
    padding: 0;
    background: transparent;
    margin: 28px 0 0 auto;
    display: block;
    cursor: pointer;
    font-family: "OTR Old Sock";
}
.contact-block .content .inner form textarea {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 14px 17px 14px;
    width: 100%;
    height: 74px;
    margin: -4px 0 0 0;
    overflow: hidden;
}
.contact-block .content .inner form textarea::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.featured-posts-portfolio {
    padding: 80px 0;
}
.featured-posts-portfolio .inner {
    max-width: 1146px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.featured-posts-portfolio .inner > div {
    width: calc((100% - 114px) / 3);
}
.featured-posts-portfolio .inner > div a {
    line-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.featured-posts-portfolio .inner > div h3 {
    font-size: 18px;
    line-height: 24px;
    color: #4f351c;
    text-transform: uppercase;
    text-align: center;
    margin: 22px 0 0 0;
    color: #4f351c;
    font-family: "OTR Old Sock";
    padding: 0 15px;
    display: flex;
    height: 100%;
}
.featured-posts-portfolio .inner > div h3 span {
    margin: auto;
}
.faq-block {
    padding: 95px 0 98px;
}
.faq-block .inner {
    max-width: 1206px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.faq-block .inner h2 {
    color: #363d1b;
    font-size: 66.57px;
    line-height: 79.89px;
    letter-spacing: -3.33px;
    text-align: center;
    margin: 0 0 50px;
}
.faq-block .inner .faq-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.faq-block .inner .faq-column {
    width: 48%;
    max-width: 575px;
}
.faq-block .inner .faq-column > div:first-of-type {
    border-top: 1px solid #9e522e;
}
.faq-block .inner .faq-single {
    border-bottom: 1px solid #9e522e;
    border-left: 1px solid #9e522e;
    border-right: 1px solid #9e522e;
}
.faq-block .inner .faq-single h3 {
    color: #9e522e;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    padding: 16px 60px 16px 21px;
    font-family: "OTR Old Sock";
    position: relative;
}
.faq-block .inner .faq-single h3 img {
    width: 31px;
    position: absolute;
    right: 19px;
    top: 13px;
}
.faq-block .inner .faq-single .answer {
    display: none;
}
.faq-block .inner .faq-single .answer p {
    font-size: 18px;
    line-height: 20px;
    padding: 0px 60px 16px 21px;
    color: #54491a;
}
.packages-reasons {
    padding: 102px 0 110px;
}
.packages-reasons .inner {
    max-width: 1185px;
    margin: 0 auto;
    width: 90%;
}
.packages-reasons .inner h2 {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    color: #54491a;
    margin: 0 0 20px;
}
.packages-reasons .inner .reasons {
    position: relative;
    padding: 54px 0 0 0;
}
.packages-reasons .inner .reasons::before {
    content: " ";
    display: block;
    width: 1px;
    height: 100%;
    background: #54491a;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}
.packages-reasons .inner .reasons > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 50px;
}
.packages-reasons .inner .reasons > div .image {
    width: 50%;
}
.packages-reasons .inner .reasons > div .image img {
    max-width: 382px;
    width: 100%;
    display: block;
}
.packages-reasons .inner .reasons > div .content {
    width: 50%;
}
.packages-reasons .inner .reasons > div .content h3 {
    border: 1px solid #54491a;
    text-transform: uppercase;
    color: #54491a;
    font-size: 18px;
    line-height: 33px;
    margin: 0 0 26px;
    font-family: "OTR Old Sock";
}
.packages-reasons .inner .reasons > div .content p {
    color: #54491a;
    font-size: 18px;
    line-height: 24px;
}
.packages-reasons .inner .reasons > div:nth-of-type(odd) .image {
    padding: 0 30px 0 0;
}
.packages-reasons .inner .reasons > div:nth-of-type(odd) .image img {
    margin: 0 0 0 auto;
}
.packages-reasons .inner .reasons > div:nth-of-type(odd) .content h3 {
    border-radius: 0 26px 26px 0;
    border-left: none;
    text-align: left;
    padding: 8px 25px 8px 25px;
}
.packages-reasons .inner .reasons > div:nth-of-type(odd) .content p {
    padding: 0 25px 0 25px;
}
.packages-reasons .inner .reasons > div:nth-of-type(even) {
    flex-direction: row-reverse;
}
.packages-reasons .inner .reasons > div:nth-of-type(even) .image {
    padding: 7px 0 0 25px;
}
.packages-reasons .inner .reasons > div:nth-of-type(even) .content h3 {
    border-radius: 26px 0 0 26px;
    border-right: none;
    text-align: right;
    padding: 8px 25px 8px 30px;
}
.packages-reasons .inner .reasons > div:nth-of-type(even) .content p {
    padding: 0 25px 0 30px;
}
.packages-reasons .inner .reasons > div:last-of-type {
    margin: 0;
}
.packages-portfolio {
    background: #dfd3b7;
    padding: 97px 0 64px;
}
.packages-portfolio .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
}
.packages-portfolio .inner h2 {
    text-align: center;
    margin: 0 0 60px;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    color: #4f351c;
}
.packages-portfolio .inner .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.packages-portfolio .inner .posts > div {
    width: 31%;
    max-width: 344px;
    margin-bottom: 68px;
}
.packages-portfolio .inner .posts > div a {
    display: block;
    line-height: 0;
    height: 100%;
}
.packages-portfolio .inner .posts > div h3 {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    padding: 12px 15px;
    font-family: "OTR Old Sock";
}
.packages-portfolio .inner .posts > div:nth-of-type(3n + 1) a {
    background: #b78989;
}
.packages-portfolio .inner .posts > div:nth-of-type(3n + 2) a {
    background: #8c8e65;
}
.packages-portfolio .inner .posts > div:nth-of-type(3n + 3) a {
    background: #ba8a49;
}
.features {
    background: #ba8a49;
    padding: 74px 0 87px;
}
.features .inner {
    max-width: 1185px;
    margin: 0 auto;
    width: 90%;
}
.features .inner h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 24px;
    color: #dfd3b7;
    margin: 0 0 67px;
    font-family: "OTR Old Sock";
}
.features .inner .images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    line-height: 0;
}
.features .inner .images img {
    max-width: 167px;
    width: 18%;
}
.packages-about {
    background: #b78989;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}
.packages-about .content {
    width: 50%;
    display: flex;
    padding: 87px 55px 79px 71px;
}
.packages-about .content .inner {
    margin: auto 0;
    max-width: 557px;
}
.packages-about .content .inner h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    color: #fff4ed;
    margin: 0 0 24px;
}
.packages-about .content .inner p {
    color: #fff4ed;
    font-size: 18px;
    line-height: 20px;
    max-width: 501px;
}
.packages-about .content .inner p.sub-title {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 20px;
    font-family: "OTR Old Sock";
}
.packages-about .content .inner .links {
    display: flex;
    flex-direction: column;
    margin: 24px 0 0 0;
}
.packages-about .content .inner .links .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #fff4ed;
    border: 1px solid #fff4ed;
    border-radius: 26px;
    margin: 24px 0 0;
    text-align: center;
    width: 100%;
    font-family: "OTR Old Sock";
    padding: 5px 20px;
    max-width: 463px;
}
.packages-about .content .inner .links a:last-of-type {
    margin: 0;
}
.packages-about .images {
    width: 50%;
    position: relative;
    line-height: 0;
    display: flex;
}
.packages-about .images .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.packages-about .images .image {
    z-index: 1;
    margin: auto;
    max-width: 467px;
    width: 80%;
    position: relative;
}
.packages-about .images .image .front-image {
    border: 10px solid #ffffff;
    margin: 110px 0;
}
.packages-about .images .image .graphic-1 {
    position: absolute;
    max-width: 128px;
    right: -59px;
    top: 52px;
}
.packages-about .images .image .graphic-2 {
    position: absolute;
    max-width: 123px;
    bottom: 79px;
    left: -76px;
}
.packages-gallery {
    background: #9d522e;
    padding: 20px 0;
}
.packages-gallery .images {
    line-height: 0;
}
.packages-gallery .images .image {
    padding: 0 10px;
}
.packages-gallery .images .image img {
    max-height: 489px;
    width: auto;
}
.packages-packages {
    background: #dfd3b7;
    padding: 110px 0 89px;
}
.packages-packages .inner {
    max-width: 1102px;
    margin: 0 auto;
    width: 90%;
}
.packages-packages .inner h2 {
    text-align: center;
    margin: 0 0 70px;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    color: #54491a;
    max-width: 631px;
    margin: 0 auto 70px;
}
.packages-packages .inner .packages > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 66px;
}
.packages-packages .inner .packages > div .image {
    width: 40%;
    max-width: 435px;
    padding: 0 18px 0 0;
    line-height: 0;
}
.packages-packages .inner .packages > div .image img {
    height: 100%;
    object-fit: cover;
}
.packages-packages .inner .packages > div .content {
    width: 60%;
    padding: 48px 54px 70px;
}
.packages-packages .inner .packages > div .content h3 {
    color: #fff4ed;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -2.25px;
    margin: 0 0 34px;
    font-family: "mandrel-condensed";
}
.packages-packages .inner .packages > div .content p {
    color: #fff4ed;
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    max-width: 522px;
}
.packages-packages .inner .packages > div .content p.price {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 34px;
    font-family: "OTR Old Sock";
    font-weight: inherit;
}
.packages-packages .inner .packages > div .content p.highlighted-text {
    font-size: 28px;
    line-height: 25.2px;
    color: #4f351c;
    margin: 0 0 33px;
    font-weight: inherit;
    font-family: "Sunday Bloom";
}
.packages-packages .inner .packages > div:nth-of-type(3n + 1) .content {
    background: #9e522e;
}
.packages-packages .inner .packages > div:nth-of-type(3n + 2) .content {
    background: #ba8a49;
}
.packages-packages .inner .packages > div:nth-of-type(3n + 3) .content {
    background: #8c8e65;
}
.packages-packages .inner .packages > div:nth-of-type(even) {
    flex-direction: row-reverse;
}
.packages-packages .inner .packages > div:nth-of-type(even) .image {
    padding: 0 0 0 18px;
}
.cta-style-1 {
    background: #ac886d;
    padding: 60px 0 38px;
}
.cta-style-1 .inner {
    max-width: 1175px;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #fff4ed;
    padding: 42px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.cta-style-1 .inner .content {
    width: 50%;
}
.cta-style-1 .inner .content h2 {
    color: #dfd3b7;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -2px;
    margin: 0 0 27px;
}
.cta-style-1 .inner .content p {
    color: #fff4ed;
}
.cta-style-1 .inner .content .top-text {
    margin: 0 0 27px;
}
.cta-style-1 .inner .content .top-text p {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    font-family: "OTR Old Sock";
}
.cta-style-1 .inner .content .bottom-text p {
    font-size: 18px;
    line-height: 24px;
}
.cta-style-1 .inner .link {
    width: fit-content;
}
.cta-style-1 .inner .link .button {
    display: block;
    width: fit-content;
    margin: 4px 0 27px auto;
    border-radius: 26px;
    border: 1px solid #fff4ed;
    color: #fff4ed;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    font-family: "OTR Old Sock";
    padding: 5px 25px;
    min-width: 253px;
    text-align: center;
}
.cta-style-1 .inner .link .graphic {
    max-width: 166px;
    display: block;
    margin: 0 0 0 auto;
}
.cta-style-1 .inner .link .graphic.colour-1 {
    filter: brightness(0) saturate(100%) invert(58%) sepia(5%) saturate(2072%) hue-rotate(24deg) brightness(94%)
        contrast(88%);
}
.cta-style-1 .inner .link .graphic.colour-2 {
    filter: brightness(0) saturate(100%) invert(57%) sepia(27%) saturate(816%) hue-rotate(355deg) brightness(95%)
        contrast(89%);
}
.cta-style-1 .inner .link .graphic.colour-3 {
    filter: brightness(0) saturate(100%) invert(32%) sepia(81%) saturate(450%) hue-rotate(334deg) brightness(97%)
        contrast(91%);
}
.cta-style-1 .inner .link .graphic.colour-4 {
    filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(1384%) hue-rotate(348deg) brightness(91%)
        contrast(94%);
}
.cta-style-1 .inner .link .graphic.colour-5 {
    filter: brightness(0) saturate(100%) invert(23%) sepia(87%) saturate(391%) hue-rotate(11deg) brightness(90%)
        contrast(86%);
}
.cta-style-1 .inner .link .graphic.colour-6 {
    filter: brightness(0) saturate(100%) invert(100%) sepia(17%) saturate(2634%) hue-rotate(295deg) brightness(100%)
        contrast(108%);
}
.cta-style-1 .inner .link .graphic.colour-7 {
    filter: brightness(0) saturate(100%) invert(61%) sepia(18%) saturate(508%) hue-rotate(314deg) brightness(93%)
        contrast(93%);
}
.cta-style-1 .inner .link .graphic.colour-8 {
    filter: brightness(0) saturate(100%) invert(55%) sepia(18%) saturate(650%) hue-rotate(343deg) brightness(98%)
        contrast(89%);
}
.cta-style-1.bb-colour-4 .inner .content .top-text p {
    color: #dfd3b7;
}
.cta-style-1.bb-colour-6 .inner {
    border-color: #4f351c;
}
.cta-style-1.bb-colour-6 .inner .content h2 {
    color: #4f351c;
}
.cta-style-1.bb-colour-6 .inner .content p {
    color: #4f351c;
}
.cta-style-1.bb-colour-6 .inner .link a {
    border-color: #4f351c;
    color: #4f351c;
}
.contact-info {
    background: #ac886d;
    padding: 70px 0 91px;
}
.contact-info .inner {
    max-width: 1142px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.contact-info .inner .graphic {
    position: absolute;
    max-width: 213px;
    top: -38px;
    left: -138px;
}
.contact-info .inner::before {
    content: " ";
    display: block;
    position: absolute;
    background: #54491a;
    width: 1px;
    height: 85%;
    left: -55px;
    bottom: -91px;
}
.contact-info .inner .content {
    width: 55%;
    margin: 80px 0 0 0;
    position: relative;
}
.contact-info .inner .content h2 {
    color: #fff4ed;
    font-size: 45px;
    line-height: 40px;
    letter-spacing: -2.25px;
    margin: 0 0 30px;
}
.contact-info .inner .content p {
    color: #fff4ed;
    font-size: 16px;
    line-height: 20px;
    max-width: 419px;
}
.contact-info .inner .content p.highlighted-text {
    font-size: 32px;
    line-height: 25.2px;
    margin: 37px 0 0 0;
    font-family: "Sunday Bloom";
    max-width: 622px;
}
.contact-info .inner .content .button {
    border-radius: 26px;
    border: 1px solid #fff4ed;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #fff4ed;
    display: block;
    width: fit-content;
    margin: 37px 0 0 0;
    font-family: "OTR Old Sock";
    padding: 5px 20px;
    min-width: 253px;
    text-align: center;
}
.contact-info .inner .images {
    width: 45%;
    position: relative;
}
.contact-info .inner .images .image-1 {
    border: 10px solid #fff4ed;
    max-width: 369px;
    margin: 0 0 0 auto;
    display: block;
    width: 72%;
}
.contact-info .inner .images .image-2 {
    max-width: 290px;
    width: 57%;
    position: absolute;
    top: 47%;
    right: -22%;
}
.blog-category-links {
    padding: 35px 0 0 0;
}
.blog-category-links .inner {
    max-width: 1203px;
    width: 90%;
    margin: 0 auto;
    border-radius: 26px;
    border: 1px solid #50351c;
    display: flex;
    justify-content: space-between;
    padding: 5px 29px;
}
.blog-category-links .inner p {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 33px;
    color: #50351c;
    white-space: nowrap;
    font-family: "OTR Old Sock";
}
.blog-category-links .inner .links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.blog-category-links .inner .links a {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 33px;
    color: #50351c;
    font-family: "OTR Old Sock";
}
.blog-latest-posts {
    padding: 100px 0 32px;
}
.blog-latest-posts .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1143px;
    width: 90%;
    margin: 0 auto;
}
.blog-latest-posts .inner > div {
    line-height: 0;
    max-width: 344px;
    width: 31%;
    margin-bottom: 68px;
}
.blog-latest-posts .inner > div a {
    display: flex;
    flex-direction: column;
    line-height: 0;
    height: 100%;
}
.blog-latest-posts .inner > div h3 {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-family: "OTR Old Sock";
    padding: 12px 15px;
    height: 100%;
    display: flex;
}
.blog-latest-posts .inner > div h3 span {
    margin: auto;
}
.blog-latest-posts .inner > div:nth-of-type(3n + 1) a {
    background: #b78989;
}
.blog-latest-posts .inner > div:nth-of-type(3n + 2) a {
    background: #8c8e65;
}
.blog-latest-posts .inner > div:nth-of-type(3n + 3) a {
    background: #ba8a49;
}
.blog-search {
    background: #b78989;
    padding: 46px 0 44px;
}
.blog-search .inner {
    max-width: 794px;
    margin: 0 auto;
    width: 90%;
    color: #fff4ed;
    text-align: center;
}
.blog-search .inner h2 {
    font-size: 55px;
    line-height: 45px;
    letter-spacing: -2.75px;
    margin: 0 0 37px;
}
.blog-search .inner p {
    font-size: 16px;
    line-height: 33px;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
}
.blog-search .inner input[type="search"] {
    border: 1px solid #fff4ed;
    border-radius: 26px;
    color: #fff4ed;
    font-size: 16px;
    line-height: 33px;
    background: transparent;
    width: 100%;
    margin: 29px 0;
    font-family: "OTR Old Sock";
    padding: 5px 28px;
}
.blog-search .inner input[type="search"]::placeholder {
    text-transform: uppercase;
    color: #fff4ed;
}
.blog-search .inner button {
    display: none;
}
.blog-search .inner .recommendations p {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    font-family: "OTR Old Sock";
    margin: 0 0 23px;
}
.blog-search .inner .recommendations ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 20px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.blog-search .inner .recommendations ul li::after {
    content: "·";
    margin: 0 5px;
}
.blog-search .inner .recommendations ul li:last-of-type::after {
    content: " ";
    margin: 0;
}
.thank-you-contact {
    padding: 344px 0 81px;
    position: relative;
}
.thank-you-contact .inner {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    max-width: 676px;
}
.thank-you-contact .inner h1 {
    font-size: 86px;
    line-height: 85px;
    margin: 0 0 26px;
    letter-spacing: -4.3px;
    color: #54491a;
}
.thank-you-contact .inner p {
    font-size: 18px;
    line-height: 24px;
    color: #4f351c;
    margin-left: auto;
    margin-right: auto;
    max-width: 476px;
}
.thank-you-contact .inner p.sub-title {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 20px;
    line-height: 25px;
    color: #54491a;
    max-width: 542px;
}
.thank-you-contact .inner p.highlighted-text {
    font-size: 32px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    color: #4f351c;
    max-width: 542px;
}
.thank-you-contact .image-1 {
    position: absolute;
    max-width: 215px;
    left: 0;
    top: 138px;
}
.thank-you-contact .image-2 {
    position: absolute;
    max-width: 190px;
    left: 65px;
    top: 353px;
}
.thank-you-contact .image-3 {
    position: absolute;
    max-width: 254px;
    right: 0;
    top: 246px;
}
.freebie-thank-you {
    padding: 344px 0 115px;
    position: relative;
}
.freebie-thank-you .inner {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    max-width: 801px;
}
.freebie-thank-you .inner h1 {
    font-size: 65px;
    line-height: 85px;
    margin: 0 0 19px;
    letter-spacing: -3.25px;
    color: #54491a;
    max-width: 676px;
    margin-left: auto;
    margin-right: auto;
}
.freebie-thank-you .inner p {
    font-size: 18px;
    line-height: 24px;
    color: #4f351c;
    margin-left: auto;
    margin-right: auto;
    max-width: 476px;
}
.freebie-thank-you .inner p.sub-title {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 25px;
    font-family: "OTR Old Sock";
    color: #54491a;
    max-width: 542px;
}
.freebie-thank-you .inner p.highlighted-text {
    font-size: 32px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    color: #4f351c;
    max-width: 622px;
}
.freebie-thank-you .inner .arrow {
    max-width: 46px;
    display: block;
    margin: 33px auto 0;
}
.freebie-thank-you .inner form {
    border-top: 1px solid #54491a;
    margin: 39px 0 0 0;
}
.freebie-thank-you .inner form div {
    padding: 0;
}
.freebie-thank-you .inner form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.freebie-thank-you .inner form input[type="text"],
.freebie-thank-you .inner form input[type="email"] {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 15px 17px;
    width: 100%;
}
.freebie-thank-you .inner form input[type="text"]::placeholder,
.freebie-thank-you .inner form input[type="email"]::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.freebie-thank-you .inner form input[type="submit"] {
    text-transform: uppercase;
    color: #54491a;
    font-size: 18px;
    line-height: 24px;
    border: none;
    padding: 0;
    background: transparent;
    margin: 28px 0 0 auto;
    display: block;
    cursor: pointer;
    font-family: "OTR Old Sock";
}
.freebie-thank-you .inner form textarea {
    border: none;
    background: transparent;
    color: #54491a;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #54491a;
    border-left: 1px solid #54491a;
    border-right: 1px solid #54491a;
    max-width: none;
    font-family: "OTR Old Sock";
    padding: 19px 17px 11px;
    width: 100%;
    height: 59px;
    margin: -4px 0 0 0;
}
.freebie-thank-you .inner form textarea::placeholder {
    color: #54491a;
    text-transform: uppercase;
}
.freebie-thank-you .image-1 {
    position: absolute;
    max-width: 215px;
    left: 0;
    top: 138px;
}
.freebie-thank-you .image-2 {
    position: absolute;
    max-width: 190px;
    left: 65px;
    top: 353px;
}
.freebie-thank-you .image-3 {
    position: absolute;
    max-width: 254px;
    right: 0;
    top: 246px;
}
.about-intro {
    position: relative;
    padding: 132px 0 106px;
}
.about-intro .inner {
    width: 90%;
    margin: 0 auto;
    max-width: 692px;
    text-align: center;
}
.about-intro .inner h2 {
    font-size: 55px;
    line-height: 55px;
    color: #54491a;
    margin: 0 0 36px;
    letter-spacing: -2.75px;
}
.about-intro .inner p {
    color: #8c8e65;
    font-size: 24px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
}
.about-intro .image-1 {
    max-width: 274px;
    position: absolute;
    left: 0;
    top: 0;
}
.about-intro .image-2 {
    max-width: 288px;
    position: absolute;
    right: -14px;
    bottom: -33px;
    border: 10px solid #e0d3b7;
}
.about-intro .graphic-1 {
    max-width: 153px;
    position: absolute;
    right: 82px;
    top: 62px;
}
.about-reasons {
    background: #9e522e;
    padding: 84px 0 108px;
    position: relative;
}
.about-reasons .graphic {
    max-width: 103px;
    position: absolute;
    top: -120px;
    right: 59px;
    z-index: 1;
}
.about-reasons .inner {
    width: 90%;
    margin: 0 auto;
    max-width: 1142px;
    border-bottom: 1px solid #fff4ed;
    padding: 0 0 47px;
    position: relative;
}
.about-reasons .inner h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    color: #fff4ed;
    margin: 0 0 33px;
}
.about-reasons .inner p {
    font-size: 18px;
    line-height: 20px;
    color: #fff4ed;
}
.about-reasons .inner .reasons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 29px 0 0 0;
}
.about-reasons .inner .reasons > div {
    width: 33.3333333333%;
    padding: 48px 51px 48px 53px;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 1) {
    background: #b78989;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 1) h3 {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 1) p {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 2),
.about-reasons .inner .reasons > div:nth-of-type(6n + 4),
.about-reasons .inner .reasons > div:nth-of-type(6n + 6) {
    background: #dfd3b7;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 2) h3,
.about-reasons .inner .reasons > div:nth-of-type(6n + 4) h3,
.about-reasons .inner .reasons > div:nth-of-type(6n + 6) h3 {
    color: #9d522e;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 2) p,
.about-reasons .inner .reasons > div:nth-of-type(6n + 4) p,
.about-reasons .inner .reasons > div:nth-of-type(6n + 6) p {
    color: #9d522e;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 3) {
    background: #ba8a49;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 3) h3 {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 3) p {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 5) {
    background: #8c8e65;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 5) h3 {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:nth-of-type(6n + 5) p {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:last-of-type {
    background: transparent;
    width: 66.6666666667%;
}
.about-reasons .inner .reasons > div:last-of-type h3 {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div:last-of-type p {
    color: #fff4ed;
}
.about-reasons .inner .reasons > div h3 {
    font-size: 28px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    margin: 0 0 28px;
}
.about-reasons .inner .reasons > div p {
    font-size: 18px;
    line-height: 20px;
}
.about-reasons-2 {
    padding: 99px 0 65px;
    position: relative;
}
.about-reasons-2 .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
    position: relative;
}
.about-reasons-2 .inner h2 {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    color: #54491a;
    max-width: 692px;
    margin: 0 auto 34px;
}
.about-reasons-2 .inner .reasons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.about-reasons-2 .inner .reasons > div {
    width: 33.3333333333%;
    text-align: center;
    margin-bottom: 65px;
}
.about-reasons-2 .inner .reasons > div h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    color: #9d522e;
    font-family: "OTR Old Sock";
    padding: 0 35px;
    display: flex;
    margin: 0 0 43px;
    border-bottom: 1px solid #9d522e;
    padding: 0 0 11px;
}
.about-reasons-2 .inner .reasons > div h3 span {
    margin: auto;
    max-width: 301px;
}
.about-reasons-2 .inner .reasons > div p {
    color: #54491a;
    font-size: 18px;
    line-height: 20px;
    padding: 0 35px;
    max-width: 386px;
    margin-left: auto;
    margin-right: auto;
}
.about-reasons-2 .inner .reasons.no-5 > div:nth-of-type(5n + 4),
.about-reasons-2 .inner .reasons.no-5 > div:nth-of-type(5n + 5) {
    width: 50%;
}
.about-reasons-2 .image-1 {
    max-width: 232px;
    position: absolute;
    right: 0;
    top: -60px;
}
.about-reasons-2 .image-2 {
    max-width: 276px;
    position: absolute;
    border: 10px solid #e0d3b7;
    left: -11px;
    bottom: 56px;
}
.search-results-wrapper .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1143px;
    width: 90%;
    margin: 0 auto;
}
.search-results-wrapper .inner > div {
    line-height: 0;
    max-width: 344px;
    width: 31%;
    margin-bottom: 68px;
}
.search-results-wrapper .inner > div a {
    display: flex;
    flex-direction: column;
    line-height: 0;
    height: 100%;
}
.search-results-wrapper .inner > div h3 {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-family: "OTR Old Sock";
    padding: 12px 15px;
    height: 100%;
    display: flex;
}
.search-results-wrapper .inner > div h3 span {
    margin: auto;
}
.search-results-wrapper .inner > div:nth-of-type(3n + 1) a {
    background: #b78989;
}
.search-results-wrapper .inner > div:nth-of-type(3n + 2) a {
    background: #8c8e65;
}
.search-results-wrapper .inner > div:nth-of-type(3n + 3) a {
    background: #ba8a49;
}
.related-posts {
    padding: 127px 0 129px;
}
.related-posts .inner {
    max-width: 1143px;
    width: 90%;
    margin: 0 auto;
}
.related-posts .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    text-align: center;
    margin: 0 0 15px;
    color: #54491a;
}
.related-posts .inner p {
    text-align: center;
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 24px;
    color: #4f351c;
    text-transform: uppercase;
}
.related-posts .inner .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 0 0;
}
.related-posts .inner .posts > div {
    max-width: 344px;
    width: 31%;
}
.related-posts .inner .posts > div a {
    display: block;
    line-height: 0;
    height: 100%;
}
.related-posts .inner .posts > div a h3 {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-family: "OTR Old Sock";
    padding: 12px 15px;
}
.related-posts .inner .posts > div:nth-of-type(3n + 1) a {
    background: #b78989;
}
.related-posts .inner .posts > div:nth-of-type(3n + 2) a {
    background: #8c8e65;
}
.related-posts .inner .posts > div:nth-of-type(3n + 3) a {
    background: #ba8a49;
}
.related-posts .inner .button {
    display: block;
    margin: 47px auto 0;
    border: 1px solid #50351c;
    border-radius: 26px;
    font-family: "OTR Old Sock";
    width: fit-content;
    min-width: 463px;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #4f351c;
    text-align: center;
}
.packages-intro {
    background: #dfd3b7;
    padding: 172px 0 176px;
    position: relative;
}
.packages-intro .inner {
    max-width: 809px;
    margin: 0 auto;
    width: 90%;
    text-align: center;
}
.packages-intro .inner h2 {
    color: #54491a;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 0 36px;
}
.packages-intro .inner p {
    margin-left: auto;
    margin-right: auto;
    color: #4f351c;
    font-size: 18px;
    line-height: 22px;
    max-width: 291px;
}
.packages-intro .inner p.highlighted-text {
    font-size: 24px;
    line-height: 25.2px;
    color: #9e522e;
    font-family: "Sunday Bloom";
    max-width: 556px;
}
.packages-intro .inner p.sub-title {
    color: #ba8a49;
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    max-width: 582px;
}
.packages-intro .image-1 {
    position: absolute;
    max-width: 273px;
    top: 273px;
    left: 32px;
}
.packages-intro .image-2 {
    position: absolute;
    max-width: 236px;
    right: 0;
    top: 60px;
}
.packages-intro .image-3 {
    position: absolute;
    max-width: 261px;
    right: 72px;
    top: 310px;
}
.packages-planning {
    padding: 94px 0 140px;
}
.packages-planning .inner {
    max-width: 1190px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.packages-planning .inner .images {
    width: 50%;
    position: relative;
    line-height: 0;
}
.packages-planning .inner .images .image-1 {
    border: 10px solid #8c8e64;
    max-width: 369px;
}
.packages-planning .inner .images .image-2 {
    max-width: 290px;
    position: absolute;
    top: 233px;
    left: 46%;
}
.packages-planning .inner .images .graphic {
    max-width: 143px;
    position: absolute;
    left: 55%;
    top: 13%;
}
.packages-planning .inner .content {
    width: 50%;
    text-align: right;
}
.packages-planning .inner .content h2 {
    font-size: 45px;
    line-height: 40px;
    color: #4f351c;
    letter-spacing: -2.25px;
    margin: 0 0 35px;
}
.packages-planning .inner .content p {
    color: #4f351c;
    font-size: 18px;
    line-height: 25px;
    max-width: 415px;
    margin-left: auto;
}
.packages-planning .inner .content p.highlighted-text {
    font-family: "Sunday Bloom";
    color: #4f351c;
    font-size: 32px;
    line-height: 25.2px;
    max-width: none;
}
.packages-planning .inner .content p.sub-title {
    color: #ba8a49;
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    max-width: none;
}
.packages-planning .inner .content .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #ba8a49;
    border: 1px solid #ba8a49;
    border-radius: 26px;
    display: block;
    width: fit-content;
    margin: 36px 0 0 auto;
    font-family: "OTR Old Sock";
    padding: 8px 20px;
    min-width: 464px;
    text-align: center;
}
.packages-image-collage {
    position: relative;
}
.packages-image-collage .images {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
}
.packages-image-collage .images .image-1 {
    width: 17%;
    position: absolute;
    left: -6%;
    top: -11%;
}
.packages-image-collage .images .image-2 {
    width: 18%;
    position: absolute;
    left: 3%;
    bottom: 6%;
    z-index: 2;
}
.packages-image-collage .images .image-3 {
    width: 25%;
    position: absolute;
    left: 15%;
    top: 5%;
    z-index: 1;
}
.packages-image-collage .images .image-4 {
    width: 32%;
    position: absolute;
    left: 37%;
    top: 0;
}
.packages-image-collage .images .image-5 {
    width: 18%;
    position: absolute;
    left: 63%;
    top: 27%;
    z-index: 1;
}
.packages-image-collage .images .image-6 {
    width: 18%;
    position: absolute;
    left: 80%;
    top: 5%;
    z-index: 1;
}
.packages-image-collage .images .image-7 {
    width: 27%;
    position: absolute;
    left: 77%;
    z-index: 1;
    bottom: 0;
}
.packages-capture {
    background: #dfd3b7;
    padding: 97px 0 76px;
}
.packages-capture .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
}
.packages-capture .inner h2 {
    color: #4f351c;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    margin: 0 0 24px;
    text-align: center;
}
.packages-capture .inner p {
    color: #4f351c;
    font-size: 18px;
    line-height: 33px;
    text-align: center;
}
.packages-capture .inner .sub-title p {
    font-family: "OTR Old Sock";
    text-transform: uppercase;
}
.packages-capture .inner .highlighted-text {
    margin: 0 0 24px;
}
.packages-capture .inner .highlighted-text p {
    font-size: 24px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.packages-capture .inner .points {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 49px 0 62px 0;
}
.packages-capture .inner .points > div {
    width: 31%;
    max-width: 344px;
}
.packages-capture .inner .points > div p {
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 28px;
    line-height: 28px;
    padding: 32px 10px 31px;
}
.packages-capture .inner .points > div:nth-of-type(3n + 1) {
    background: #b78989;
}
.packages-capture .inner .points > div:nth-of-type(3n + 2) {
    background: #8c8e65;
}
.packages-capture .inner .points > div:nth-of-type(3n + 3) {
    background: #ba8a49;
}
.packages-capture .inner .button {
    border-radius: 26px;
    border: 1px solid #9d522e;
    color: #9d522e;
    font-family: "OTR Old Sock";
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    text-align: center;
    padding: 5px 20px;
    display: block;
    width: fit-content;
    min-width: 354px;
    margin: 24px auto 0;
}
.styled-shoots-before-after {
    padding: 93px 0 82px;
}
.styled-shoots-before-after .inner {
    max-width: 1044px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.styled-shoots-before-after .inner .boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.styled-shoots-before-after .inner .boxes > div {
    width: 50%;
    padding: 48px 37px 48px 57px;
}
.styled-shoots-before-after .inner .boxes > div h2 {
    font-family: "Sunday Bloom";
    font-size: 28px;
    line-height: 25.2px;
    margin: 0 0 36px;
}
.styled-shoots-before-after .inner .boxes > div p {
    font-size: 18px;
    line-height: 24px;
}
.styled-shoots-before-after .inner .boxes > div:nth-of-type(2n + 1) {
    background: #dfd3b7;
    color: #9e522e;
}
.styled-shoots-before-after .inner .boxes > div:nth-of-type(2n + 2) {
    background: #ba8a49;
    color: #fff4ed;
}
.styled-shoots-before-after .inner .button {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    border: 1px solid #53491a;
    border-radius: 26px;
    color: #53491a;
    font-size: 18px;
    line-height: 33px;
    width: fit-content;
    display: block;
    margin: 42px auto 0;
    text-align: center;
    min-width: 291px;
    padding: 5px 20px;
}
.styled-shoots-before-after .inner .graphic {
    position: absolute;
    max-width: 171px;
    right: -135px;
    bottom: 56px;
}
.styled-shoots-details {
    background: #8c8e65;
    padding: 96px 0 111px;
}
.styled-shoots-details .inner {
    max-width: 1019px;
    width: 90%;
    margin: 0 auto;
    color: #fff4ed;
}
.styled-shoots-details .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 0 45px;
    text-align: center;
}
.styled-shoots-details .inner p {
    font-size: 18px;
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
    max-width: 684px;
}
.styled-shoots-details .inner .highlighted-text {
    margin: 0 0 32px;
}
.styled-shoots-details .inner .highlighted-text p {
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
    max-width: 556px;
    text-align: center;
}
.styled-shoots-details .inner .boxes {
    margin: 45px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.styled-shoots-details .inner .boxes .box-column {
    width: 49%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.styled-shoots-details .inner .boxes .box-column:nth-child(2n + 1) > div:nth-of-type(2n + 1) h3 {
    color: #ba8a49;
}
.styled-shoots-details .inner .boxes .box-column:nth-child(2n + 1) > div:nth-of-type(2n + 1) p {
    color: #ba8a49;
}
.styled-shoots-details .inner .boxes .box-column:nth-child(2n + 1) > div:nth-of-type(2n + 2) h3 {
    color: #8c8e65;
}
.styled-shoots-details .inner .boxes .box-column:nth-child(2n + 1) > div:nth-of-type(2n + 2) p {
    color: #8c8e65;
}
.styled-shoots-details .inner .boxes .box {
    background: #dfd3b7;
    padding: 48px 41px 35px 48px;
    height: 100%;
}
.styled-shoots-details .inner .boxes .box h3 {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 24px;
    color: #9e522e;
    margin: 0 0 20px;
}
.styled-shoots-details .inner .boxes .box p {
    font-size: 18px;
    line-height: 24px;
    color: #9e522e;
    max-width: none;
}
.styled-shoots-intro {
    background: #dfd3b7;
    padding: 103px 0 94px;
    position: relative;
}
.styled-shoots-intro::before {
    content: " ";
    display: block;
    width: 1px;
    height: 80%;
    background: #54491a;
    position: absolute;
    left: 70px;
    top: 49px;
}
.styled-shoots-intro .inner {
    max-width: 809px;
    margin: 0 auto;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.styled-shoots-intro .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 0 36px;
    color: #54491a;
}
.styled-shoots-intro .inner p {
    font-size: 18px;
    line-height: 22px;
    color: #4f351c;
    max-width: 684px;
    margin-left: auto;
    margin-right: auto;
}
.styled-shoots-intro .inner p.highlighted-text {
    color: #9e522e;
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
    max-width: 556px;
}
.styled-shoots-intro .inner p.sub-title {
    color: #ba8a49;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 33px;
}
.styled-shoots-intro .inner .button {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    color: #53491a;
    border: 1px solid #53491a;
    border-radius: 26px;
    width: fit-content;
    min-width: 291px;
    display: block;
    margin: 54px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 33px;
    padding: 5px 20px;
}
.styled-shoots-intro .image-1 {
    position: absolute;
    max-width: 273px;
    left: 32px;
    top: 237px;
}
.styled-shoots-intro .image-2 {
    position: absolute;
    max-width: 236px;
    right: 0;
    top: 60px;
}
.styled-shoots-intro .image-3 {
    position: absolute;
    max-width: 261px;
    right: 72px;
    top: 310px;
}
.styled-shoots-about {
    background: #8c8e65;
    padding: 62px 0 62px;
    position: relative;
}
.styled-shoots-about .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff4ed;
    width: 90%;
    margin: 0 auto;
    max-width: 1142px;
    position: relative;
    z-index: 1;
}
.styled-shoots-about .inner .content {
    max-width: 512px;
    width: 55%;
    margin: 86px 0 0;
}
.styled-shoots-about .inner .content h2 {
    font-size: 45px;
    line-height: 40px;
    letter-spacing: -2.25px;
    margin: 0 0 25px;
}
.styled-shoots-about .inner .content p {
    font-size: 18px;
    line-height: 24px;
    max-width: 419px;
}
.styled-shoots-about .inner .image {
    max-width: 369px;
    width: 40%;
}
.styled-shoots-about .inner .image img {
    border: 10px solid #fff4ed;
}
.styled-shoots-about .graphic {
    max-width: 214px;
    position: absolute;
    left: -34px;
    top: 32px;
}
.places-map-location {
    padding: 100px 0;
}
.places-map-location .inner {
    max-width: 1142px;
    margin: 0 auto;
    width: 90%;
}
.places-map-location .inner .sub-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 0 23px;
}
.places-map-location .inner .sub-title p {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 20px;
    line-height: 33px;
    width: fit-content;
    margin: 0 0 0 auto;
    color: #4f351c;
    margin: 0 0 0 20px;
}
.places-map-location .inner .sub-title::before {
    content: " ";
    height: 1px;
    background: #4f351c;
    display: block;
    margin: auto;
    flex-grow: 1;
}
.places-map-location .inner .top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 44px;
}
.places-map-location .inner .top .image {
    width: 38%;
    line-height: 0;
}
.places-map-location .inner .top .content {
    background: #9e522e;
    color: #fff4ed;
    width: calc(62% - 18px);
    padding: 48px 95px 40px 56px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.places-map-location .inner .top .content h2 {
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -2.25px;
    margin: 0 0 23px;
}
.places-map-location .inner .top .content p {
    font-size: 18px;
    line-height: 26px;
}
.places-map-location .inner .top .content .button {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    text-align: center;
    width: fit-content;
    display: block;
    border: 1px solid #fff4ed;
    border-radius: 26px;
    color: #fff4ed;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 33px;
}
.places-map-location .inner .top .content.colour-1 {
    background: #8c8e65;
}
.places-map-location .inner .top .content.colour-2 {
    background: #ba8a49;
}
.places-map-location .inner .top .content.colour-3 {
    background: #9e522e;
}
.places-map-location .inner .top .content.colour-4 {
    background: #4f351c;
}
.places-map-location .inner .top .content.colour-5 {
    background: #54491a;
}
.places-map-location .inner .top .content.colour-6 {
    background: #fff4ed;
}
.places-map-location .inner .top .content.colour-7 {
    background: #b78989;
}
.places-map-location .inner .top .content.colour-8 {
    background: #ac886d;
}
.places-map-location .inner .top .content.colour-9 {
    background: #dfd3b7;
    color: #4f351c;
}
.places-map-location .inner .top .content.colour-9 .button {
    border-color: #50351c;
    color: #4f351c;
}
.places-map-location .inner .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.places-map-location .inner .bottom .points {
    width: calc(63% - 18px);
}
.places-map-location .inner .bottom .points > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 26px;
}
.places-map-location .inner .bottom .points > div p {
    color: #4f351c;
    font-size: 18px;
    line-height: 26px;
}
.places-map-location .inner .bottom .points > div p.title {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 20px;
    line-height: 33px;
    width: 36%;
    padding: 0 20px 0 0;
}
.places-map-location .inner .bottom .points > div .text {
    width: 64%;
}
.places-map-location .inner .bottom .points > div:last-of-type {
    margin: 0;
}
.places-map-location .inner .bottom .image {
    width: 37%;
    line-height: 0;
}
.places-map-location .inner .posts {
    border-top: 1px solid #b78989;
    display: flex;
    justify-content: space-around;
    margin: 47px 0 0 0;
    padding: 39px 0 0 0;
}
.places-map-location .inner .posts a {
    color: #b78989;
    max-width: 301px;
    text-align: center;
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 24px;
    line-height: 24px;
    margin: auto 0;
}
.places-map-location.bb-colour-1 .inner .sub-title::before {
    background: #fff4ed;
}
.places-map-location.bb-colour-1 .inner .sub-title p {
    color: #fff4ed;
}
.places-map-location.bb-colour-1 .inner .bottom .points > div p {
    color: #fff4ed;
}
.places-map-location.bb-colour-1 .inner .posts {
    border-color: #fff4ed;
}
.places-map-location.bb-colour-1 .inner .posts a {
    color: #fff4ed;
}
.places-resources {
    padding: 0 0 110px;
}
.places-resources .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
}
.places-resources .inner h2 {
    text-align: center;
    margin: 0 0 31px;
    font-size: 24px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    color: #9e522e;
}
.places-resources .inner .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.places-resources .inner .posts > div {
    width: 31%;
    max-width: 344px;
}
.places-resources .inner .posts > div a {
    display: block;
    line-height: 0;
    height: 100%;
}
.places-resources .inner .posts > div h3 {
    text-transform: uppercase;
    color: #fff4ed;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    padding: 12px 15px;
    font-family: "OTR Old Sock";
}
.places-resources .inner .posts > div:nth-of-type(3n + 1) a {
    background: #b78989;
}
.places-resources .inner .posts > div:nth-of-type(3n + 2) a {
    background: #8c8e65;
}
.places-resources .inner .posts > div:nth-of-type(3n + 3) a {
    background: #ba8a49;
}
.places-locations {
    padding: 76px 0 40px;
    text-align: center;
    position: relative;
}
.places-locations .inner {
    max-width: 1143px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    z-index: 1;
}
.places-locations .inner h2 {
    color: #54491a;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 auto 39px;
    max-width: 692px;
}
.places-locations .inner .text {
    margin: 0 auto 57px;
    max-width: 649px;
}
.places-locations .inner .text p {
    color: #4f351c;
    font-size: 18px;
    line-height: 24px;
}
.places-locations .inner .locations {
    border-top: 1px solid #9d522e;
    border-bottom: 1px solid #9d522e;
    padding: 40px 0 16px;
}
.places-locations .inner .locations ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    column-count: 3;
}
.places-locations .inner .locations ul li {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    color: #b78989;
    margin: 0 0 23px;
    font-family: "OTR Old Sock";
    padding: 0 30px;
}
.places-locations .image {
    border: 10px solid #e0d3b7;
    max-width: 281px;
    position: absolute;
    right: -7px;
    top: -15px;
    z-index: -1;
}
.portfolio-approach {
    background: #dfd3b7;
    padding: 77px 0 72px;
    position: relative;
}
.portfolio-approach .inner {
    max-width: 1148px;
    margin: 0 auto;
    width: 90%;
    text-align: center;
}
.portfolio-approach .inner h2 {
    color: #4f351c;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    margin: 0 0 24px;
}
.portfolio-approach .inner .points {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.portfolio-approach .inner .points > div {
    width: 49%;
    margin-bottom: 53px;
}
.portfolio-approach .inner .points > div:nth-of-type(4n + 1) {
    background: #b78989;
}
.portfolio-approach .inner .points > div:nth-of-type(4n + 2) {
    background: #8c8e65;
}
.portfolio-approach .inner .points > div:nth-of-type(4n + 3) {
    background: #ba8a49;
}
.portfolio-approach .inner .points > div:nth-of-type(4n + 4) {
    background: #ac886d;
}
.portfolio-approach .inner .points > div .text {
    padding: 20px 35px 21px 38px;
}
.portfolio-approach .inner .points > div .text p {
    color: #fff4ed;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    font-family: "basic-sans";
}
.portfolio-approach .inner p {
    color: #4f351c;
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 22px;
}
.portfolio-approach .inner .text-1 {
    max-width: 693px;
    margin: 0 auto 62px;
}
.portfolio-approach .inner .text-2 {
    max-width: 864px;
    margin: 0 auto 24px;
}
.portfolio-approach .inner .highlighted-text {
    max-width: 522px;
    margin: 0 auto 24px;
}
.portfolio-approach .inner .highlighted-text p {
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
}
.portfolio-approach .inner .button {
    display: block;
    margin: 0 auto;
    border: 1px solid #9d522e;
    border-radius: 26px;
    padding: 5px 20px;
    min-width: 354px;
    width: fit-content;
    text-transform: uppercase;
    color: #9d522e;
    font-size: 18px;
    line-height: 33px;
    font-family: "OTR Old Sock";
}
.portfolio-approach .graphic {
    max-width: 103px;
    position: absolute;
    bottom: -93px;
    right: 59px;
    z-index: 1;
}
.portfolio-gallery {
    background: #9e522e;
    color: #fff4ed;
    padding: 73px 0 27px;
    text-align: center;
    position: relative;
}
.portfolio-gallery .inner {
    max-width: 625px;
    width: 90%;
    margin: 0 auto;
}
.portfolio-gallery .inner h2 {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.75px;
    margin: 0 auto 36px;
}
.portfolio-gallery .inner p {
    font-family: "OTR Old Sock";
    font-size: 18px;
    line-height: 33px;
    max-width: 556px;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-gallery .inner .highlighted-text {
    margin: 0 0 36px;
}
.portfolio-gallery .inner .highlighted-text p {
    font-family: "Sunday Bloom";
    font-size: 24px;
    line-height: 25.2px;
}
.portfolio-gallery .images {
    margin: 81px 0 0 0;
}
.portfolio-gallery .images .image {
    padding: 0 10px;
}
.portfolio-gallery .graphic {
    max-width: 164px;
    position: absolute;
    left: 47px;
    top: 51px;
}
.portfolio-how {
    background: #b78989;
    padding: 68px 0 69px;
}
.portfolio-how .inner {
    max-width: 1142px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    color: #fff4ed;
    justify-content: space-between;
}
.portfolio-how .inner .column {
    line-height: 0;
}
.portfolio-how .inner .column.left {
    max-width: 535px;
    width: 47%;
}
.portfolio-how .inner .column.right {
    max-width: 538px;
    width: 48%;
}
.portfolio-how .inner .column.right img {
    margin: 0 0 35px;
}
.portfolio-how .inner .column h2 {
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2.75px;
    text-align: right;
    margin: 0 0 65px;
}
.portfolio-how .inner .column p {
    font-size: 18px;
    line-height: 23px;
}
.portfolio-how .inner .highlighted-text {
    margin: 84px 0 0 0;
}
.portfolio-how .inner .highlighted-text p {
    font-family: "Sunday Bloom";
    font-size: 36px;
    line-height: 38px;
}
.places-intro {
    background: #ba8a49;
    padding: 98px 0 82px;
}
.places-intro .inner {
    max-width: 1142px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.places-intro .inner::before {
    content: " ";
    background: #54491a;
    width: 1px;
    height: 104%;
    display: block;
    position: absolute;
    bottom: -215px;
    left: -56px;
    z-index: 1;
}
.places-intro .inner .graphic {
    position: absolute;
    max-width: 213px;
    top: -65px;
    left: -138px;
}
.places-intro .inner .content {
    width: 58%;
    margin: 51px 0 0 0;
    position: relative;
}
.places-intro .inner .content h2 {
    color: #fff4ed;
    font-size: 45px;
    line-height: 40px;
    letter-spacing: -2.25px;
    margin: 0 0 31px;
}
.places-intro .inner .content p {
    color: #fff4ed;
    font-size: 16px;
    line-height: 20px;
}
.places-intro .inner .content .highlighted-text p {
    font-size: 32px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
}
.places-intro .inner .content .columns {
    display: flex;
    margin: 31px 0 47px 0;
}
.places-intro .inner .content .columns .column {
    max-width: 291px;
}
.places-intro .inner .content .columns .column.left {
    margin: 0 40px 0 0;
}
.places-intro .inner .content .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #fff4ed;
    border: 1px solid #fff4ed;
    border-radius: 26px;
    margin: 47px 0 0 0;
    text-align: center;
    width: fit-content;
    font-family: "OTR Old Sock";
    padding: 5px 26px;
    min-width: 253px;
    display: block;
}
.places-intro .inner .images {
    width: 42%;
}
.places-intro .inner .images .image-1 {
    border: 10px solid #fff4ed;
    max-width: 369px;
    margin: 0 0 0 auto;
    display: block;
    width: 72%;
}
.places-intro .inner .images .image-2 {
    max-width: 290px;
    width: 57%;
    position: absolute;
    top: 51%;
    right: -10%;
}
.about-why {
    background: #b78989;
    padding: 122px 0 84px;
}
.about-why .inner {
    max-width: 1142px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.about-why .inner::before {
    content: " ";
    background: #54491a;
    width: 1px;
    height: 93%;
    display: block;
    position: absolute;
    bottom: -84px;
    left: -56px;
}
.about-why .inner .graphic {
    position: absolute;
    max-width: 213px;
    top: -90px;
    left: -138px;
}
.about-why .inner .content {
    width: 55%;
    position: relative;
}
.about-why .inner .content h2 {
    color: #fff4ed;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -2.25px;
    margin: 0 0 17px;
    max-width: 512px;
}
.about-why .inner .content p {
    color: #fff4ed;
    font-size: 16px;
    line-height: 20px;
}
.about-why .inner .content .columns {
    display: flex;
    margin: 31px 0 0 0;
}
.about-why .inner .content .columns .column {
    max-width: 291px;
}
.about-why .inner .content .columns .column.left {
    margin: 0 40px 0 0;
}
.about-why .inner .content .columns .column .highlighted-text {
    margin: 28px 0 0 0;
    width: 170%;
}
.about-why .inner .content .columns .column .highlighted-text p {
    font-family: "Sunday Bloom";
    font-size: 32px;
    line-height: 32px;
}
.about-why .inner .images {
    width: 45%;
    position: relative;
}
.about-why .inner .images .image-1 {
    border: 10px solid #fff4ed;
    max-width: 369px;
    margin: 0 0 0 auto;
    display: block;
    width: 72%;
}
.about-why .inner .images .image-2 {
    max-width: 290px;
    width: 57%;
    position: absolute;
    top: 39%;
    right: -22%;
}
.freebie-info {
    background: #8c8e65;
    padding: 70px 0 91px;
}
.freebie-info .inner {
    max-width: 1142px;
    width: 84%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.freebie-info .inner::before {
    content: " ";
    background: #54491a;
    width: 1px;
    height: 85%;
    display: block;
    position: absolute;
    bottom: -91px;
    left: -56px;
}
.freebie-info .inner .graphic {
    position: absolute;
    max-width: 213px;
    top: -38px;
    left: -138px;
}
.freebie-info .inner .content {
    width: 55%;
    margin: 80px 0 0 0;
    position: relative;
}
.freebie-info .inner .content h2 {
    color: #fff4ed;
    font-size: 45px;
    line-height: 40px;
    letter-spacing: -2.25px;
    margin: 0 0 31px;
    max-width: 512px;
}
.freebie-info .inner .content p {
    color: #fff4ed;
    font-size: 16px;
    line-height: 20px;
    max-width: 419px;
}
.freebie-info .inner .content p.highlighted-text {
    font-size: 32px;
    line-height: 25.2px;
    font-family: "Sunday Bloom";
    max-width: 622px;
    margin-top: 37px;
}
.freebie-info .inner .content .button {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 33px;
    color: #fff4ed;
    border: 1px solid #fff4ed;
    border-radius: 26px;
    margin: 37px 0 0;
    text-align: center;
    width: fit-content;
    font-family: "OTR Old Sock";
    padding: 5px 26px;
    min-width: 253px;
    display: block;
}
.freebie-info .inner .images {
    width: 45%;
    position: relative;
}
.freebie-info .inner .images .image-1 {
    border: 10px solid #fff4ed;
    max-width: 369px;
    margin: 0 0 0 auto;
    display: block;
    width: 72%;
}
.freebie-info .inner .images .image-2 {
    max-width: 290px;
    width: 57%;
    position: absolute;
    top: 13vw;
    right: -22%;
}
.places-wishlist .header {
    background: #ac886d;
    padding: 94px 0 105px;
    color: #fff4ed;
    text-align: center;
}
.places-wishlist .header .inner {
    max-width: 676px;
    margin: 0 auto;
    width: 90%;
}
.places-wishlist .header .inner h2 {
    margin: 0 0 21px;
    font-size: 65px;
    line-height: 85px;
    letter-spacing: -3.25px;
}
.places-wishlist .header .inner p {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 24px;
    max-width: 476px;
}
.places-wishlist .locations {
    padding: 125px 0 0;
}
.places-wishlist .locations .inner {
    max-width: 1144px;
    margin: 0 auto;
    width: 90%;
}
.places-wishlist .locations .inner .location {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.places-wishlist .locations .inner .location .content {
    width: 62%;
}
.places-wishlist .locations .inner .location .content h3 {
    color: #9e522e;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -2.25px;
    margin: 0 0 21px;
    font-family: "mandrel-condensed";
}
.places-wishlist .locations .inner .location .content p {
    color: #54491a;
    font-size: 18px;
    line-height: 26px;
    max-width: 541px;
}
.places-wishlist .locations .inner .location .content .points {
    margin: 38px 0 0 0;
}
.places-wishlist .locations .inner .location .content .points > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 26px;
}
.places-wishlist .locations .inner .location .content .points > div p {
    color: #4f351c;
    max-width: none;
}
.places-wishlist .locations .inner .location .content .points > div p.title {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    font-size: 20px;
    line-height: 33px;
    width: 36%;
    padding: 0 20px 0 0;
    max-width: none;
}
.places-wishlist .locations .inner .location .content .points > div .text {
    width: 64%;
}
.places-wishlist .locations .inner .location .content .points > div:last-of-type {
    margin: 0;
}
.places-wishlist .locations .inner .location .link .button {
    text-transform: uppercase;
    font-family: "OTR Old Sock";
    text-align: center;
    width: fit-content;
    display: block;
    border: 1px solid #9d522e;
    border-radius: 26px;
    color: #9d522e;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 33px;
}
.bb-colour-1 {
    background: #8c8e65;
}
.bb-colour-2 {
    background: #ba8a49;
}
.bb-colour-3 {
    background: #9e522e;
}
.bb-colour-4 {
    background: #4f351c;
}
.bb-colour-5 {
    background: #54491a;
}
.bb-colour-6 {
    background: #fff4ed;
}
.bb-colour-7 {
    background: #b78989;
}
.bb-colour-8 {
    background: #ac886d;
}
.bb-colour-9 {
    background: #dfd3b7;
}



@media only screen and (max-width: 767px) {
	
    .site-footer .inner .column {
        width: 100% !important;
    }
    .site-footer .inner .column.logo-text {
        order: 1;
        border-bottom: 1px solid #ded3b7;
        padding: 30px;
    }
    .site-footer .inner .column.links {
        order: 2;
        border-bottom: 1px solid #ded3b7;
        text-align: center;
        padding: 0 0 30px;
    }
    .site-footer .inner .column.socials {
        order: 3;
        text-align: center;
        padding: 0 0 30px;
    }
    .site-footer .inner .row.copyright {
        order: 4;
    }
    .home-about {
        flex-direction: column-reverse;
    }
    .home-about .images {
        width: 100%;
    }
    .home-about .images .image .front-image {
        margin: 50px 0;
    }
    .home-about .content {
        width: 100%;
        padding: 50px 0 50px 0;
    }
    .home-about .content .inner {
        margin: auto;
    }
    .home-why .inner .graphic {
        max-width: 100px;
        right: 0;
    }
    .home-why .inner h2 {
        font-size: 40px;
        line-height: 40px;
        padding-right: 100px;
    }
    .home-why .inner p {
        padding-right: 100px;
    }
    .home-why .inner .button {
        min-width: unset;
        width: 100%;
        font-size: 16px;
    }
    .home-portfolio {
        padding: 50px 0;
    }
    .home-portfolio .inner {
        max-width: none;
    }
    .home-portfolio .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 auto 30px;
    }
    .home-portfolio .inner .posts {
        margin: 0;
    }
    .home-portfolio .inner .posts > div {
        width: 100%;
        max-width: none;
        margin: 0 0 30px;
    }
    .home-portfolio .inner .button {
        width: 100%;
        min-width: unset;
        font-size: 16px;
    }
    .contact-dropdown {
        padding: 50px 0;
    }
    .contact-dropdown .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .testimonials-style-2 {
        padding: 50px 0;
    }
    .home-freebie .inner {
        flex-direction: column-reverse;
    }
    .home-freebie .inner .images {
        width: 100%;
    }
    .home-freebie .inner .content {
        width: 100%;
        margin: 0 0 30px;
        padding: 52px 0 0 0;
    }
    .home-freebie .inner .content h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .home-resources {
        padding: 150px 0 50px;
    }
    .home-resources .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .home-resources .inner .columns .column {
        width: 100%;
        border-bottom: none;
        margin: 0;
    }
    .home-resources .inner .columns .column h3 {
        padding: 0 20px 20px;
    }
    .home-inclusivity {
        padding: 50px 0;
    }
    .home-inclusivity .inner .column.left {
        width: 100%;
        max-width: none;
    }
    .home-inclusivity .inner .column.left img {
        margin: 0 0 30px;
    }
    .home-inclusivity .inner .column.right {
        width: 100%;
        max-width: none;
    }
    .home-inclusivity .inner .column h2 {
        text-align: left;
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .home-inclusivity .inner .column p.highlighted-text {
        text-align: left;
    }
    .faq-dropdown {
        padding: 50px 0;
    }
    .faq-dropdown .inner {
        padding: 30px 30px 30px;
    }
    .faq-dropdown .inner h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .contact-block {
        flex-direction: column-reverse;
    }
    .contact-block .content {
        width: 100%;
    }
    .contact-block .content .inner {
        max-width: none;
        width: 90%;
    }
    .contact-block .content .inner form {
        max-width: none;
    }
    .contact-block .images {
        width: 100%;
    }
    .contact-info .inner .content {
        width: 100%;
        margin: 0;
    }
    .contact-info .inner .images {
        width: 100%;
    }
    .process {
        padding: 50px 0 50px;
    }
    .process .inner h2 {
        font-size: 44px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .process .inner .steps > div {
        width: 100%;
        padding: 30px;
    }
    .home-plan .inner {
        width: 90%;
    }
    .home-plan .inner .content {
        width: 100%;
        margin: 0 0 30px;
    }
    .home-plan .inner .content .columns {
        flex-direction: column;
    }
    .home-plan .inner .content .columns .column {
        max-width: none;
    }
    .home-plan .inner .content .columns .column.left {
        margin-top: 1em;
    }
    .home-plan .inner .images {
        width: 100%;
    }
    .home-plan .inner .images .image-1 {
        margin: 0;
    }
    .home-plan .inner .images .image-2 {
        right: 0;
        top: 25vh;
    }
    .about-why .inner .content {
        width: 100%;
    }
    .about-why .inner .content .columns {
        flex-direction: column;
    }
    .about-why .inner .content .columns .column {
        max-width: none;
    }
    .about-why .inner .content .columns .column.left {
        margin: 0 0 1em;
    }
    .about-why .inner .content .columns .column .highlighted-text {
        width: 100%;
    }
    .about-why .inner .images {
        width: 100%;
    }
    .about-why .inner .images .image-1 {
        margin: 0;
    }
    .about-reasons .inner .reasons > div {
        width: 100% !important;
        padding: 30px;
    }
    .packages-about .content {
        width: 100%;
        padding: 50px 0 50px 0;
    }
    .packages-about .content .inner {
        width: 90%;
        margin: auto;
    }
    .packages-about .images {
        width: 100%;
    }
    .packages-capture {
        padding: 50px 0;
    }
    .packages-capture .inner .points > div {
        width: 100%;
        max-width: none;
        margin: 0 auto 20px auto;
    }
    .packages-reasons .inner .reasons::before {
        display: none;
    }
    .packages-reasons .inner .reasons > div {
        flex-direction: column-reverse !important;
    }
    .packages-reasons .inner .reasons > div .image {
        width: 100%;
        padding: 0 !important;
        margin: 26px 0 0 0;
    }
    .packages-reasons .inner .reasons > div .image img {
        max-width: none;
        width: 100%;
    }
    .packages-reasons .inner .reasons > div .content {
        width: 100%;
    }
    .packages-reasons .inner .reasons > div .content h3 {
        border-radius: 26px !important;
        border: 1px solid #54491a !important;
        padding: 8px 25px 8px 25px !important;
        text-align: center !important;
    }
    .packages-reasons .inner .reasons > div .content p {
        padding: 0 !important;
    }
    .about-reasons-2 .inner .reasons > div {
        width: 100% !important;
    }
    .about-reasons-2 .inner .reasons > div h3 {
        height: auto !important;
    }
    .about-reasons-2 .inner .reasons > div h3 span {
        max-width: none;
    }
    .about-reasons-2 .inner .reasons > div p {
        max-width: none;
        padding: 0;
    }
    .about-more-info .inner {
        padding: 30px;
    }
    .testimonials-style-4 {
        flex-direction: column-reverse;
    }
    .testimonials-style-4 .image {
        width: 100%;
    }
    .testimonials-style-4 .image img {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
    }
    .testimonials-style-4 .content {
        width: 100%;
        padding: 50px 0;
    }
    .testimonials-style-4 .content .inner {
        width: 90%;
        margin: 0 auto;
    }
    .cta-style-1 {
        padding: 50px 0 50px;
    }
    .cta-style-1 .inner {
        flex-wrap: wrap;
    }
    .cta-style-1 .inner .content {
        width: 100%;
    }
    .cta-style-1 .inner .content h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .cta-style-1 .inner .link {
        width: 100%;
    }
    .cta-style-1 .inner .link .button {
        margin: 0 0 27px;
    }
    .about-links {
        padding: 50px 0 30px;
    }
    .about-links .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .about-links .inner .links {
        flex-direction: column;
    }
    .about-links .inner .links a {
        width: 100%;
        margin: 0 0 20px;
    }
    .faq-block {
        padding: 50px 0;
    }
    .faq-block .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .faq-block .inner .faq-wrapper {
        border-top: 1px solid #9e522e;
    }
    .faq-block .inner .faq-column {
        width: 100%;
        max-width: none;
    }
    .faq-block .inner .faq-column > div:first-of-type {
        border-top: none;
    }
    .styled-shoots-details {
        padding: 50px 0 30px;
    }
    .styled-shoots-details .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .styled-shoots-details .inner .boxes .box-column {
        width: 100%;
        gap: 0;
    }
    .styled-shoots-details .inner .boxes .box {
        margin: 0 0 20px;
    }
    .styled-shoots-before-after {
        padding: 50px 0 50px;
    }
    .styled-shoots-before-after .inner .boxes > div {
        width: 100%;
        padding: 30px;
    }
    .styled-shoots-about .inner .content {
        width: 100%;
        max-width: none;
        margin: 0 0 30px;
    }
    .styled-shoots-about .inner .image {
        width: 100%;
        max-width: none;
    }
    .blog-latest-posts .inner > div {
        width: 100%;
        max-width: none;
        margin-bottom: 30px;
    }
    .blog-search {
        padding: 30px 0;
    }
    .blog-search .inner h2 {
        font-size: 40px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .full-screen-header-one-image .content h1 {
        font-size: 50px;
        line-height: 50px;
    }
    .featured-posts-portfolio {
        padding: 50px 0 30px !important;
    }
    .featured-posts-portfolio .inner > div {
        width: 100%;
        max-width: none;
        margin-bottom: 30px;
    }
    .portfolio-how {
        padding: 50px 0 50px;
    }
    .portfolio-how .inner .column.left {
        width: 100%;
        max-width: none;
        margin: 0 0 20px;
    }
    .portfolio-how .inner .column.right {
        width: 100%;
        max-width: none;
    }
    .portfolio-how .inner .highlighted-text {
        margin: 30px 0 0 0;
    }
    .portfolio-approach {
        padding: 50px 0;
    }
    .portfolio-approach .inner .points > div {
        width: 100%;
        margin-bottom: 30px;
        max-width: none;
    }
	
	.full-screen-header-two .content {
    width: 90%;
    margin: auto auto 50px;
}

.full-screen-header-two .content .subtitle {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.2px;
    margin: 0 auto 18px;
}

.full-screen-header-two .content h1 {
    font-size: 50px;
    line-height: 48px;
    letter-spacing: -2.5px;
    margin: 0 0 18px;
}

.full-screen-header-two .content .text p {
    font-size: 22px;
    line-height: 24px;
    max-width: 320px;
}

.full-screen-header-two .content .button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    line-height: 24px;
    padding: 9px 20px;
    margin-top: 24px;
}
	
}



