/* =========================================================
   THE HEAT CORPORATION
   ========================================================= */

:root {
    --black: #000000;
    --grey: #9b9b9b;
    --border: rgba(155, 155, 155, 0.22);

    --font: "Nunito Sans", Arial, sans-serif;

    --page-padding: clamp(24px, 4vw, 72px);

    --header-height: 132px;

    --section-title-size: clamp(58px, 5.4vw, 92px);
    --section-title-line: 0.96;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: var(--black);
    color: var(--grey);

    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--grey);
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: var(--grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--grey);
    font-weight: 500;
}

p {
    margin: 0;
    color: var(--grey);
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

.eyebrow,
.section-eyebrow {
    display: block;

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-eyebrow {
    margin-bottom: 34px;
}

.section-title {
    width: 100%;

    margin: 0;

    color: var(--grey);

    font-size: var(--section-title-size);
    font-weight: 500;
    line-height: var(--section-title-line);

    letter-spacing: -0.055em;
}

.section-title span {
    display: block;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--grey);

    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition: opacity 0.25s ease;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.text-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    background: var(--black);
}

.site-header::after {
    content: "";

    position: absolute;
    z-index: 1;

    right: 0;
    bottom: 0;

    left: calc(var(--page-padding) + 190px);

    height: 1px;

    background: var(--border);
}

.site-header__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 100%;
    height: var(--header-height);

    padding: 0 var(--page-padding);

    background: var(--black);
}


/* =========================================================
   HEADER LOGO
   ========================================================= */

.site-logo {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex: 0 0 165px;

    width: 165px;
    height: 100%;

    overflow: visible;

    line-height: 1;
}

.site-logo img {
    display: block;

    width: 150px;
    max-width: none;
    height: auto;

    margin: 0;

    transform: translateY(18px);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.site-nav {
    display: flex;
    align-items: center;

    height: 100%;

    margin-left: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;

    gap: clamp(28px, 3vw, 48px);

    height: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-nav li {
    display: flex;
    align-items: center;

    height: 100%;

    margin: 0;
    padding: 0;
}

.site-nav a {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;

    padding: 0;

    color: var(--grey);

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    transition: opacity 0.25s ease;
}

.site-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 38px;

    width: 100%;
    height: 1px;

    background: var(--grey);

    transform: scaleX(0);
    transform-origin: right center;

    transition: transform 0.3s ease;
}

.site-nav a:hover {
    opacity: 0.7;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 42px;

    margin-left: clamp(30px, 3.5vw, 56px);
    padding: 0 22px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.header-cta:hover {
    background: var(--grey);
    color: var(--black);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    position: relative;

    display: none;

    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    margin-left: auto;
    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.menu-toggle span {
    position: absolute;

    left: 8px;

    display: block;

    width: 28px;
    height: 1px;

    background: var(--grey);

    transition:
        top 0.3s ease,
        transform 0.3s ease;
}

.menu-toggle span:first-child {
    top: 17px;
}

.menu-toggle span:last-child {
    top: 26px;
}

body.menu-open .menu-toggle span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
    position: fixed;
    z-index: 1001;

    top: 0;
    left: 0;

    display: none;
    flex-direction: column;
    justify-content: space-between;

    width: 100%;
    height: 100dvh;

    padding:
        138px
        var(--page-padding)
        36px;

    background: var(--black);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.mobile-nav ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav li:first-child {
    border-top: 1px solid var(--border);
}

.mobile-nav nav a {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 76px;

    color: var(--grey);

    font-size: clamp(28px, 8vw, 42px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -0.035em;
}

.mobile-nav__bottom {
    padding-top: 32px;
}

.mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 18px;
    padding: 18px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.mobile-nav__cta span {
    transition: transform 0.25s ease;
}

.mobile-nav__cta:hover span {
    transform: translateX(5px);
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    min-height: 100vh;

    padding-top: var(--header-height);
}


/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));

    padding:
        clamp(70px, 9vh, 120px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);
}

.home-hero__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    text-align: center;
}

.home-hero__eyebrow {
    display: block;

    margin-bottom: clamp(30px, 4vh, 46px);

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-hero__title {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(64px, 7.8vw, 132px);
    font-weight: 500;
    line-height: 0.9;

    letter-spacing: -0.065em;

    text-align: center;
}

.home-hero__title span {
    display: block;
}

.home-hero__copy {
    width: 100%;
    max-width: 620px;

    margin-top: clamp(38px, 5vh, 56px);

    color: var(--grey);

    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 400;
    line-height: 1.7;

    text-align: center;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 34px;
    padding: 0 30px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.home-hero__cta:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}


/* =========================================================
   HERO BACKGROUND MARK
   ========================================================= */

.hero-brandmark {
    position: absolute;
    z-index: 1;

    top: 50%;
    left: 64%;

    width: min(62vw, 900px);

    transform: translate(-50%, -50%);

    opacity: 0.16;

    pointer-events: none;
    user-select: none;
}

.hero-brandmark img {
    display: block;

    width: 100%;
    max-width: none;
    height: auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.home-intro {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 820px;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.home-intro__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(70px, 8vw, 130px);

    width: 100%;

    margin: 0;
}

.home-intro__heading {
    width: 100%;

    padding-left: clamp(110px, 7vw, 145px);
}

.home-intro__heading .section-title {
    max-width: 780px;
}

.home-intro__content {
    width: 100%;
    max-width: 500px;

    margin-right: clamp(20px, 4vw, 70px);
}

.home-intro__content p {
    color: var(--grey);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.home-intro__content p + p {
    margin-top: 22px;
}

.home-intro__content .home-intro__lead {
    margin-bottom: 30px;

    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: -0.02em;
}

.home-intro__content .text-link {
    margin-top: 38px;
}


/* =========================================================
   SHARED PIPEWORK
   ========================================================= */

.intro-pipework,
.services-pipework,
.approach-pipework,
.audiences-pipework,
.final-cta-pipework {
    position: absolute;
    z-index: 1;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.intro-pipe,
.services-pipe,
.approach-pipe,
.audiences-pipe,
.final-cta-pipe {
    position: absolute;
}

.intro-joint,
.services-joint,
.approach-joint,
.audiences-joint,
.final-cta-joint {
    position: absolute;

    width: 18px;
    height: 28px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}


/* =========================================================
   INTRO PIPEWORK
   ========================================================= */

.intro-pipe {
    opacity: 0.10;
}

.intro-pipe--01 {
    top: 10%;
    left: -95px;

    width: 250px;
    height: 190px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 46px;
}

.intro-pipe--01::before {
    content: "";

    position: absolute;

    top: -11px;
    right: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.intro-pipe--01::after {
    content: "";

    position: absolute;

    right: -5px;
    bottom: -95px;

    width: 5px;
    height: 95px;

    border-left: 5px double var(--grey);
}

.intro-pipe--02 {
    top: -80px;
    right: 7%;

    width: 190px;
    height: 230px;

    border-left: 5px double var(--grey);
    border-bottom: 5px double var(--grey);

    border-bottom-left-radius: 46px;
}

.intro-pipe--02::before {
    content: "";

    position: absolute;

    left: -11px;
    bottom: -9px;

    width: 22px;
    height: 14px;

    border-left: 2px solid var(--grey);
    border-right: 2px solid var(--grey);
}

.intro-pipe--03 {
    left: 5%;
    bottom: -100px;

    width: 210px;
    height: 190px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 46px;
}

.intro-pipe--03::before {
    content: "";

    position: absolute;

    top: -11px;
    right: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.intro-pipe--04 {
    right: -90px;
    bottom: 10%;

    width: 270px;
    height: 160px;

    border-top: 5px double var(--grey);
    border-left: 5px double var(--grey);

    border-top-left-radius: 46px;
}

.intro-pipe--04::before {
    content: "";

    position: absolute;

    top: -11px;
    left: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.intro-pipe--05 {
    top: 37%;
    right: 1.5%;

    width: 80px;
    height: 185px;

    border-left: 5px double var(--grey);
    border-bottom: 5px double var(--grey);

    border-bottom-left-radius: 38px;
}

.intro-pipe--05::before {
    content: "";

    position: absolute;

    top: 54px;
    left: -11px;

    width: 18px;
    height: 26px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.intro-joint {
    opacity: 0.12;
}

.intro-joint--01 {
    top: 31%;
    left: 150px;
}

.intro-joint--02 {
    top: 140px;
    right: calc(7% + 181px);

    transform: rotate(90deg);
}

.intro-joint--03 {
    right: 174px;
    bottom: calc(10% + 149px);

    transform: rotate(90deg);
}


/* =========================================================
   SERVICES
   ========================================================= */

.home-services {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.home-services__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.home-services__intro {
    width: 100%;
    max-width: 850px;

    margin-bottom: clamp(80px, 8vw, 120px);
}

.home-services__intro .section-title {
    max-width: 820px;
}

.home-services__intro-copy {
    width: 100%;
    max-width: 570px;

    margin-top: 38px;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.home-services__list {
    position: relative;

    width: 100%;

    border-top: 1px solid var(--border);
}

.home-service {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 145px;

    padding: 34px 70px 34px 0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    transition: border-color 0.3s ease;
}

.home-service__name {
    flex: 0 0 48%;

    margin: 0;
    padding-right: 50px;

    color: var(--grey);

    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;

    transition: transform 0.3s ease;
}

.home-service__description {
    width: 100%;
    max-width: 440px;

    margin-left: auto;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.home-service__arrow {
    position: absolute;

    top: 50%;
    right: 4px;

    display: block;

    color: var(--grey);

    font-size: 22px;

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.home-service:hover {
    border-bottom-color: var(--grey);
}

.home-service:hover .home-service__name {
    transform: translateX(10px);
}

.home-service:hover .home-service__description {
    opacity: 1;
}

.home-service:hover .home-service__arrow {
    transform:
        translateY(-50%)
        translateX(7px);
}

.home-services__footer {
    display: flex;
    justify-content: flex-end;

    width: 100%;

    padding-top: 44px;
}


/* =========================================================
   SERVICES PIPEWORK
   ========================================================= */

.services-pipe {
    opacity: 0.075;
}

.services-pipe--01 {
    top: 3%;
    right: -90px;

    width: 270px;
    height: 190px;

    border-bottom: 5px double var(--grey);
    border-left: 5px double var(--grey);

    border-bottom-left-radius: 48px;
}

.services-pipe--01::before {
    content: "";

    position: absolute;

    left: -11px;
    bottom: -9px;

    width: 22px;
    height: 14px;

    border-left: 2px solid var(--grey);
    border-right: 2px solid var(--grey);
}

.services-pipe--02 {
    top: 48%;
    left: -130px;

    width: 250px;
    height: 210px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 48px;
}

.services-pipe--02::before {
    content: "";

    position: absolute;

    top: -11px;
    right: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.services-pipe--03 {
    right: -110px;
    bottom: 4%;

    width: 250px;
    height: 180px;

    border-top: 5px double var(--grey);
    border-left: 5px double var(--grey);

    border-top-left-radius: 48px;
}

.services-pipe--03::before {
    content: "";

    position: absolute;

    top: -11px;
    left: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.services-joint {
    opacity: 0.09;
}

.services-joint--01 {
    top: 54%;
    left: 115px;
}

.services-joint--02 {
    right: 134px;
    bottom: 12%;

    transform: rotate(90deg);
}


/* =========================================================
   APPROACH
   ========================================================= */

.home-approach {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.home-approach__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.75fr)
        minmax(0, 1.15fr);

    align-items: start;

    gap: clamp(100px, 12vw, 190px);

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.home-approach__content {
    width: 100%;

    border-top: 1px solid var(--border);
}

.approach-row {
    width: 100%;

    padding:
        clamp(34px, 3.5vw, 48px)
        0;

    border-bottom: 1px solid var(--border);

    transition: border-color 0.3s ease;
}

.approach-row h3 {
    margin: 0 0 18px;

    color: var(--grey);

    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.approach-row p {
    width: 100%;
    max-width: 450px;

    margin: 0;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.75;

    opacity: 0.75;

    transition: opacity 0.3s ease;
}

.approach-row:hover {
    border-bottom-color: var(--grey);
}

.approach-row:hover p {
    opacity: 1;
}

.home-approach__cta {
    padding-top: 44px;
}

.home-approach__cta p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.6;
}

.home-approach__heading {
    position: relative;

    width: 100%;
    max-width: 760px;

    padding-left: clamp(30px, 3vw, 55px);
}

.home-approach__heading .section-title {
    max-width: 760px;
}

.home-approach__heading-copy {
    width: 100%;
    max-width: 560px;

    margin-top: clamp(44px, 4.5vw, 64px);
}

.home-approach__heading-copy p {
    margin: 0;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.home-approach__heading-copy p + p {
    margin-top: 24px;
}

.home-approach__heading-copy p:first-child {
    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.55;

    letter-spacing: -0.02em;
}


/* =========================================================
   APPROACH PIPEWORK
   ========================================================= */

.approach-pipe {
    opacity: 0.075;
}

.approach-pipe--01 {
    top: -110px;
    left: -90px;

    width: 250px;
    height: 250px;

    border-right: 5px double var(--grey);
    border-bottom: 5px double var(--grey);

    border-bottom-right-radius: 48px;
}

.approach-pipe--01::before {
    content: "";

    position: absolute;

    right: -11px;
    bottom: -9px;

    width: 22px;
    height: 14px;

    border-left: 2px solid var(--grey);
    border-right: 2px solid var(--grey);
}

.approach-pipe--02 {
    left: 4%;
    bottom: -110px;

    width: 270px;
    height: 210px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 48px;
}

.approach-pipe--02::before {
    content: "";

    position: absolute;

    top: -11px;
    right: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.approach-pipe--03 {
    top: 24%;
    right: -120px;

    width: 220px;
    height: 190px;

    border-bottom: 5px double var(--grey);
    border-left: 5px double var(--grey);

    border-bottom-left-radius: 48px;
}

.approach-pipe--03::before {
    content: "";

    position: absolute;

    left: -11px;
    bottom: -9px;

    width: 22px;
    height: 14px;

    border-left: 2px solid var(--grey);
    border-right: 2px solid var(--grey);
}

.approach-joint {
    opacity: 0.09;
}

.approach-joint--01 {
    top: 145px;
    left: 153px;

    transform: rotate(90deg);
}

.approach-joint--02 {
    top: 43%;
    right: 95px;
}


/* =========================================================
   HOMEOWNERS & LANDLORDS
   ========================================================= */

.home-audiences {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.home-audiences__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.home-audiences__intro {
    width: 100%;
    max-width: 900px;

    margin-bottom: clamp(90px, 9vw, 140px);
}

.home-audiences__intro .section-title {
    max-width: 900px;
}

.home-audiences__list {
    position: relative;

    width: 100%;

    border-top: 1px solid var(--border);
}

.audience-row {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: clamp(210px, 16vw, 270px);

    padding:
        clamp(44px, 5vw, 70px)
        80px
        clamp(44px, 5vw, 70px)
        0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    transition: border-color 0.3s ease;
}

.audience-row__title {
    flex: 0 0 48%;

    padding-right: 70px;
}

.audience-row__title h3 {
    margin: 0;

    color: var(--grey);

    font-size: clamp(42px, 4.4vw, 74px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.055em;

    transition: transform 0.3s ease;
}

.audience-row__copy {
    width: 100%;
    max-width: 470px;

    margin-left: auto;
}

.audience-row__copy p {
    margin: 0;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.audience-row__arrow {
    position: absolute;

    top: 50%;
    right: 4px;

    display: block;

    color: var(--grey);

    font-size: 24px;

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.audience-row:hover {
    border-bottom-color: var(--grey);
}

.audience-row:hover .audience-row__title h3 {
    transform: translateX(10px);
}

.audience-row:hover .audience-row__copy p {
    opacity: 1;
}

.audience-row:hover .audience-row__arrow {
    transform:
        translateY(-50%)
        translateX(7px);
}


/* =========================================================
   AUDIENCE PIPEWORK
   ========================================================= */

.audiences-pipe {
    opacity: 0.075;
}

.audiences-pipe--01 {
    top: 25%;
    bottom: -100px;
    left: 47%;

    width: 150px;

    border-left: 5px double var(--grey);
}

.audiences-pipe--01::before {
    content: "";

    position: absolute;

    top: 0;
    left: -5px;

    width: 150px;
    height: 120px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 46px;
}

.audiences-pipe--02 {
    right: -120px;
    bottom: 6%;

    width: 280px;
    height: 180px;

    border-top: 5px double var(--grey);
    border-left: 5px double var(--grey);

    border-top-left-radius: 48px;
}

.audiences-pipe--02::before {
    content: "";

    position: absolute;

    top: -11px;
    left: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.audiences-joint {
    opacity: 0.1;
}

.audiences-joint--01 {
    top: 48%;
    left: calc(47% - 7px);
}

.audiences-joint--02 {
    right: 154px;
    bottom: calc(6% + 168px);

    transform: rotate(90deg);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.home-final-cta {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.home-final-cta__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    text-align: center;
}

.home-final-cta .section-eyebrow {
    width: 100%;

    text-align: center;
}

.home-final-cta__title {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(82px, 10vw, 170px);
    font-weight: 500;
    line-height: 0.86;

    letter-spacing: -0.07em;

    text-align: center;
}

.home-final-cta__title span {
    display: block;
}

.home-final-cta__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 760px;

    margin:
        clamp(70px, 8vw, 110px)
        auto
        0;

    padding-top: 38px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.home-final-cta__bottom p {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.7;

    text-align: center;
}

.home-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    min-width: 220px;
    min-height: 62px;

    margin-top: 36px;
    padding: 0 28px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.home-final-cta__button span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.home-final-cta__button:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}

.home-final-cta__button:hover span {
    transform: translateX(6px);
}


/* =========================================================
   FINAL CTA PIPEWORK
   ========================================================= */

.final-cta-pipe {
    opacity: 0.085;
}

.final-cta-pipe--01 {
    top: -120px;
    right: 8%;

    width: 250px;
    height: 300px;

    border-left: 5px double var(--grey);
    border-bottom: 5px double var(--grey);

    border-bottom-left-radius: 48px;
}

.final-cta-pipe--01::before {
    content: "";

    position: absolute;

    left: -11px;
    bottom: -9px;

    width: 22px;
    height: 14px;

    border-left: 2px solid var(--grey);
    border-right: 2px solid var(--grey);
}

.final-cta-pipe--02 {
    left: -110px;
    bottom: -80px;

    width: 330px;
    height: 230px;

    border-top: 5px double var(--grey);
    border-right: 5px double var(--grey);

    border-top-right-radius: 48px;
}

.final-cta-pipe--02::before {
    content: "";

    position: absolute;

    top: -11px;
    right: -9px;

    width: 14px;
    height: 22px;

    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
}

.final-cta-joint {
    opacity: 0.11;
}

.final-cta-joint--01 {
    top: 175px;
    right: calc(8% + 239px);

    transform: rotate(90deg);
}

.final-cta-joint--02 {
    left: 214px;
    bottom: 139px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding:
        80px
        var(--page-padding)
        36px;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.site-footer__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    padding-bottom: 80px;
}

.site-footer__brand {
    max-width: 700px;
}

.site-footer__brand h2 {
    margin-top: 24px;

    color: var(--grey);

    font-size: var(--section-title-size);
    font-weight: 500;
    line-height: var(--section-title-line);

    letter-spacing: -0.055em;
}

.gradient-text {
    color: var(--grey);
}

.site-footer__action {
    width: 100%;
    max-width: 360px;
}

.site-footer__action p {
    margin-bottom: 28px;

    color: var(--grey);

    font-size: 17px;
    line-height: 1.6;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 28px;

    border-top: 1px solid var(--border);

    color: var(--grey);

    font-size: 12px;
    line-height: 1.5;
}

.site-footer__bottom a {
    color: var(--grey);

    transition: opacity 0.25s ease;
}

.site-footer__bottom a:hover {
    opacity: 0.7;
}


/* =========================================================
   WORDPRESS ADMIN BAR
   ========================================================= */

body.admin-bar .site-header {
    top: 32px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --section-title-size: clamp(52px, 6vw, 76px);
    }

    .home-intro__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.8fr);

        gap: 60px;
    }

    .home-intro__heading {
        padding-left: clamp(70px, 6vw, 100px);
    }

    .home-intro__content {
        margin-right: 0;
    }

    .home-approach__inner {
        grid-template-columns:
            minmax(330px, 0.8fr)
            minmax(0, 1fr);

        gap: 70px;
    }

    .home-approach__heading {
        padding-left: 20px;
    }

    .home-approach__heading-copy {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE HEADER / TABLET NAV
   ========================================================= */

@media (max-width: 900px) {

    :root {
        --page-padding: 24px;
        --header-height: 106px;
    }

    .site-header::after {
        left: calc(var(--page-padding) + 145px);
    }

    .site-logo {
        flex: 0 0 135px;

        width: 135px;
        height: 100%;
    }

    .site-logo img {
        width: 125px;
        max-width: none;

        transform: translateY(12px);
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .mobile-nav {
        display: flex;

        padding:
            132px
            var(--page-padding)
            32px;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .mobile-nav {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* HERO */

    .home-hero {
        min-height: calc(100svh - var(--header-height));

        padding:
            60px
            var(--page-padding);
    }

    .hero-brandmark {
        top: 50%;
        left: 67%;

        width: min(82vw, 760px);

        opacity: 0.14;
    }

    .home-hero__title {
        font-size: clamp(56px, 11vw, 92px);
        line-height: 0.92;
    }

    .home-hero__copy {
        max-width: 500px;

        margin-top: 34px;

        font-size: 16px;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 60px;
        padding-bottom: 28px;
    }

    .site-footer__top {
        display: block;

        padding-bottom: 60px;
    }

    .site-footer__action {
        max-width: 500px;

        margin-top: 48px;
    }

    .site-footer__bottom {
        display: block;
    }

    .site-footer__bottom > * + * {
        margin-top: 10px;
    }
}


/* =========================================================
   MOBILE CONTENT
   ========================================================= */

@media (max-width: 760px) {

    :root {
        --section-title-size: clamp(44px, 12vw, 62px);
        --section-title-line: 0.97;
    }

    .section-eyebrow {
        margin-bottom: 28px;

        font-size: 10px;
    }


    /* HERO */

    .hero-brandmark {
        top: 49%;
        left: 72%;

        width: 105vw;

        opacity: 0.12;
    }

    .home-hero__eyebrow {
        font-size: 10px;
    }

    .home-hero__title {
        max-width: 620px;

        font-size: clamp(50px, 12vw, 76px);
    }

    .home-hero__copy {
        max-width: 500px;

        font-size: 15px;
    }


    /* INTRO */

    .home-intro {
        display: block;

        min-height: auto;

        padding:
            90px
            var(--page-padding);
    }

    .home-intro__inner {
        display: block;

        width: 100%;
    }

    .home-intro__heading {
        width: 100%;

        padding-left: 0;
    }

    .home-intro__content {
        width: 100%;
        max-width: 520px;

        margin: 54px 0 0;
    }

    .home-intro__content .home-intro__lead {
        font-size: 19px;
    }

    .home-intro__content p {
        font-size: 15px;
    }


    /* SERVICES */

    .home-services {
        padding:
            90px
            var(--page-padding);
    }

    .home-services__intro {
        width: 100%;
        max-width: 620px;

        margin-bottom: 70px;
    }

    .home-services__intro-copy {
        width: 100%;
        max-width: 500px;

        margin-top: 30px;

        font-size: 15px;
    }

    .home-service {
        display: block;

        min-height: 0;

        padding:
            34px
            44px
            34px
            0;
    }

    .home-service__name {
        width: 100%;

        padding: 0;

        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.05;
    }

    .home-service__description {
        width: 100%;
        max-width: 480px;

        margin: 18px 0 0;

        font-size: 14px;
        line-height: 1.65;
    }

    .home-service__arrow {
        top: 38px;
        right: 0;

        transform: none;
    }

    .home-service:hover .home-service__name {
        transform: none;
    }

    .home-service:hover .home-service__arrow {
        transform: translateX(5px);
    }

    .home-services__footer {
        justify-content: flex-start;

        padding-top: 38px;
    }


    /* APPROACH */

    .home-approach {
        display: block;

        min-height: auto;

        padding:
            90px
            var(--page-padding);
    }

    .home-approach__inner {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .home-approach__heading {
        position: relative;

        order: 1;

        width: 100%;
        max-width: 620px;

        padding-left: 0;
    }

    .home-approach__heading-copy {
        width: 100%;
        max-width: 520px;

        margin-top: 36px;
    }

    .home-approach__heading-copy p {
        font-size: 15px;
    }

    .home-approach__heading-copy p:first-child {
        font-size: 19px;
        line-height: 1.55;
    }

    .home-approach__heading-copy p + p {
        margin-top: 22px;
    }

    .home-approach__content {
        order: 2;

        width: 100%;
        max-width: 540px;

        margin-top: 65px;
    }

    .approach-row {
        padding: 32px 0;
    }

    .approach-row h3 {
        margin-bottom: 16px;

        font-size: 27px;
    }

    .approach-row p {
        font-size: 15px;
    }


    /* AUDIENCES */

    .home-audiences {
        padding:
            90px
            var(--page-padding);
    }

    .home-audiences__intro {
        margin-bottom: 70px;
    }

    .audience-row {
        display: block;

        min-height: 0;

        padding:
            40px
            44px
            40px
            0;
    }

    .audience-row__title {
        width: 100%;

        padding: 0;
    }

    .audience-row__title h3 {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1;
    }

    .audience-row__copy {
        width: 100%;
        max-width: 500px;

        margin: 24px 0 0;
    }

    .audience-row__copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .audience-row__arrow {
        top: 45px;
        right: 0;

        transform: none;
    }

    .audience-row:hover .audience-row__title h3 {
        transform: none;
    }

    .audience-row:hover .audience-row__arrow {
        transform: translateX(5px);
    }


    /* FINAL CTA */

    .home-final-cta {
        min-height: 100svh;

        padding:
            90px
            var(--page-padding);
    }

    .home-final-cta__title {
        max-width: 100%;

        font-size: clamp(64px, 18vw, 100px);
        line-height: 0.89;

        letter-spacing: -0.065em;
    }

    .home-final-cta__bottom {
        max-width: 540px;

        margin-top: 60px;

        padding-top: 30px;
    }

    .home-final-cta__bottom p {
        max-width: 500px;

        font-size: 16px;
    }

    .home-final-cta__button {
        min-width: 220px;

        margin-top: 32px;
    }


    /* REDUCED PIPEWORK */

    .intro-pipe--02,
    .intro-pipe--03,
    .intro-pipe--05,
    .intro-joint--01,
    .intro-joint--02,
    .intro-joint--03,
    .services-pipe--02,
    .services-joint--01,
    .services-joint--02,
    .approach-pipe--02,
    .approach-joint--01,
    .approach-joint--02,
    .audiences-pipe--01,
    .audiences-joint--01,
    .audiences-joint--02,
    .final-cta-joint {
        display: none;
    }

    .intro-pipe--01 {
        top: 5%;
        left: -120px;

        width: 190px;
        height: 130px;

        opacity: 0.065;
    }

    .intro-pipe--04 {
        right: -145px;
        bottom: 4%;

        width: 220px;
        height: 130px;

        opacity: 0.065;
    }

    .services-pipe--01 {
        top: 2%;
        right: -170px;

        opacity: 0.05;
    }

    .services-pipe--03 {
        right: -175px;
        bottom: 2%;

        opacity: 0.05;
    }

    .approach-pipe--01 {
        top: -160px;
        left: -170px;

        opacity: 0.05;
    }

    .approach-pipe--03 {
        top: auto;
        right: -170px;
        bottom: 4%;

        opacity: 0.05;
    }

    .audiences-pipe--02 {
        right: -180px;
        bottom: 2%;

        opacity: 0.05;
    }

    .final-cta-pipe--01 {
        top: -160px;
        right: -160px;

        opacity: 0.05;
    }

    .final-cta-pipe--02 {
        left: -220px;
        bottom: -100px;

        opacity: 0.05;
    }
}


/* =========================================================
   WORDPRESS MOBILE ADMIN BAR
   ========================================================= */

@media (max-width: 782px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar .mobile-nav {
        top: 46px;

        height: calc(100dvh - 46px);
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    :root {
        --page-padding: 20px;
        --header-height: 96px;

        --section-title-size: clamp(41px, 11.5vw, 56px);
    }


    /* HEADER */

    .site-header::after {
        left: calc(var(--page-padding) + 130px);
    }

    .site-logo {
        flex: 0 0 120px;

        width: 120px;
        height: 100%;
    }

    .site-logo img {
        width: 112px;
        max-width: none;

        transform: translateY(10px);
    }

    .mobile-nav {
        padding:
            120px
            var(--page-padding)
            26px;
    }

    .mobile-nav nav a {
        min-height: 70px;

        font-size: 32px;
    }


    /* HERO */

    .hero-brandmark {
        top: 48%;
        left: 75%;

        width: 118vw;

        opacity: 0.11;
    }

    .home-hero {
        padding:
            48px
            var(--page-padding);
    }

    .home-hero__eyebrow {
        margin-bottom: 26px;

        font-size: 10px;
    }

    .home-hero__title {
        font-size: clamp(45px, 13.2vw, 64px);
        line-height: 0.94;

        letter-spacing: -0.055em;
    }

    .home-hero__copy {
        max-width: 350px;

        margin-top: 32px;

        font-size: 15px;
        line-height: 1.6;
    }

    .home-hero__cta {
        min-height: 48px;

        margin-top: 28px;

        padding: 0 26px;
    }


    /* SECTIONS */

    .home-intro,
    .home-services,
    .home-approach,
    .home-audiences,
    .home-final-cta {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .home-final-cta__title {
        font-size: clamp(58px, 17vw, 82px);
    }

    .home-final-cta__bottom {
        margin-top: 50px;
    }
}


/* =========================================================
   SHORT DESKTOP SCREENS
   ========================================================= */

@media (max-height: 700px) and (min-width: 901px) {

    .home-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-hero__eyebrow {
        margin-bottom: 24px;
    }

    .home-hero__copy {
        margin-top: 28px;
    }

    .home-hero__cta {
        margin-top: 24px;
    }

    .home-approach {
        min-height: auto;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    padding:
        clamp(80px, 7vw, 110px)
        var(--page-padding)
        30px;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.site-footer__inner {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.site-footer__columns {
    display: grid;

    grid-template-columns:
        minmax(300px, 1.25fr)
        minmax(130px, 0.55fr)
        minmax(250px, 0.9fr)
        minmax(210px, 0.7fr);

    gap: clamp(45px, 5vw, 90px);

    width: 100%;

    padding-bottom: clamp(70px, 6vw, 95px);
}

.site-footer__column {
    min-width: 0;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.site-footer__brand {
    width: 100%;
    max-width: 430px;
}

.footer-logo {
    display: block;

    width: 150px;

    margin-bottom: 40px;
}

.footer-logo img {
    display: block;

    width: 100%;
    max-width: none;
    height: auto;
}

.site-footer__copy {
    width: 100%;
    max-width: 390px;

    margin: 0;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.75;
}

.site-footer__company {
    margin-top: 30px;

    color: var(--grey);

    font-size: 12px;
    line-height: 1.7;

    opacity: 0.7;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.site-footer__heading {
    display: block;

    margin-bottom: 26px;

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER PAGE + SERVICE LINKS
   ========================================================= */

.site-footer__pages nav,
.site-footer__services nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__pages nav a,
.site-footer__services nav a {
    position: relative;

    display: inline-block;

    padding: 7px 0;

    color: var(--grey);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-footer__pages nav a:hover,
.site-footer__services nav a:hover {
    opacity: 0.65;

    transform: translateX(5px);
}


/* =========================================================
   GAS SAFE
   ========================================================= */

.site-footer__right {
    width: 100%;
}

.site-footer__gas-safe {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
}

.site-footer__gas-safe img {
    display: block;

    width: 145px;
    max-width: 145px;
    height: auto;

    margin-bottom: 26px;
}

.site-footer__gas-details {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.site-footer__gas-details strong {
    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.site-footer__gas-details span {
    color: var(--grey);

    font-size: 12px;
    line-height: 1.5;

    opacity: 0.72;
}


/* =========================================================
   FOOTER BOTTOM LINE
   ========================================================= */

.site-footer__bottom {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 40px;

    width: 100%;

    padding-top: 26px;

    border-top: 1px solid var(--border);

    color: var(--grey);

    font-size: 11px;
    line-height: 1.5;
}

.site-footer__copyright {
    justify-self: start;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

.site-footer__legal a {
    color: var(--grey);

    white-space: nowrap;

    opacity: 0.7;

    transition: opacity 0.25s ease;
}

.site-footer__legal a:hover {
    opacity: 1;
}

.site-footer__credit {
    justify-self: end;

    white-space: nowrap;
}

.site-footer__credit a {
    position: relative;

    color: var(--grey);

    font-weight: 700;
}

.site-footer__credit a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -4px;
    left: 0;

    height: 1px;

    background: var(--grey);

    transform: scaleX(0);
    transform-origin: right center;

    transition: transform 0.25s ease;
}

.site-footer__credit a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}


/* =========================================================
   FOOTER TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .site-footer__columns {
        grid-template-columns:
            minmax(260px, 1.1fr)
            minmax(110px, 0.5fr)
            minmax(220px, 0.85fr)
            minmax(180px, 0.65fr);

        gap: 35px;
    }

    .footer-logo {
        width: 135px;
    }

    .site-footer__copy {
        font-size: 14px;
    }

    .site-footer__pages nav a,
    .site-footer__services nav a {
        font-size: 13px;
    }

    .site-footer__gas-safe img {
        width: 125px;
        max-width: 125px;
    }

    .site-footer__bottom {
        gap: 25px;
    }

    .site-footer__legal {
        gap: 18px;
    }
}


/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .site-footer {
        padding:
            76px
            var(--page-padding)
            28px;
    }

    .site-footer__columns {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap:
            60px
            35px;

        padding-bottom: 60px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;

        max-width: 520px;
    }

    .footer-logo {
        width: 125px;

        margin-bottom: 36px;
    }

    .site-footer__copy {
        max-width: 480px;

        font-size: 15px;
    }

    .site-footer__right {
        grid-column: 1 / -1;

        padding-top: 10px;

        border-top: 1px solid var(--border);
    }

    .site-footer__gas-safe {
        padding-top: 42px;
    }

    .site-footer__gas-safe img {
        width: 125px;
        max-width: 125px;
    }

    .site-footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 16px;

        padding-top: 24px;
    }

    .site-footer__legal {
        order: 2;

        flex-wrap: wrap;
        justify-content: flex-start;

        gap: 8px 20px;
    }

    .site-footer__copyright {
        order: 1;
    }

    .site-footer__credit {
        order: 3;
    }
}


/* =========================================================
   FOOTER SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-footer {
        padding-top: 68px;
    }

    .site-footer__columns {
        display: block;
    }

    .footer-logo {
        width: 115px;
    }

    .site-footer__pages,
    .site-footer__services,
    .site-footer__right {
        margin-top: 48px;
        padding-top: 42px;

        border-top: 1px solid var(--border);
    }

    .site-footer__gas-safe {
        padding-top: 0;
    }

    .site-footer__gas-safe img {
        width: 120px;
        max-width: 120px;
    }

    .site-footer__legal {
        gap: 10px 18px;
    }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));

    padding:
        clamp(70px, 9vh, 120px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);
}

.about-hero__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    text-align: center;
}

.about-hero__eyebrow {
    display: block;

    margin-bottom: clamp(30px, 4vh, 46px);

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-hero__title {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(64px, 7.8vw, 132px);
    font-weight: 500;
    line-height: 0.9;

    letter-spacing: -0.065em;

    text-align: center;
}

.about-hero__title span {
    display: block;
}

.about-hero__copy {
    width: 100%;
    max-width: 620px;

    margin-top: clamp(38px, 5vh, 56px);

    color: var(--grey);

    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 400;
    line-height: 1.7;

    text-align: center;
}

.about-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 34px;
    padding: 0 30px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.about-hero__cta:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 820px;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.about-intro__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(70px, 8vw, 130px);

    width: 100%;

    margin: 0;
}

.about-intro__heading {
    width: 100%;

    padding-left: clamp(110px, 7vw, 145px);
}

.about-intro__heading .section-title {
    max-width: 780px;
}

.about-intro__content {
    width: 100%;
    max-width: 500px;

    margin-right: clamp(20px, 4vw, 70px);
}

.about-intro__content p {
    color: var(--grey);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.about-intro__content p + p {
    margin-top: 22px;
}

.about-intro__content .about-intro__lead {
    margin-bottom: 30px;

    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: -0.02em;
}

.about-intro__content .text-link {
    margin-top: 38px;
}


/* =========================================================
   ABOUT VALUES
   ========================================================= */

.about-values {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.about-values__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.about-values__intro {
    width: 100%;
    max-width: 850px;

    margin-bottom: clamp(80px, 8vw, 120px);
}

.about-values__intro .section-title {
    max-width: 820px;
}

.about-values__intro-copy {
    width: 100%;
    max-width: 570px;

    margin-top: 38px;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.about-values__list {
    width: 100%;

    border-top: 1px solid var(--border);
}

.about-value {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 145px;

    padding: 34px 0;

    border-bottom: 1px solid var(--border);

    transition: border-color 0.3s ease;
}

.about-value__name {
    flex: 0 0 48%;

    padding-right: 50px;

    color: var(--grey);

    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;

    transition: transform 0.3s ease;
}

.about-value__description {
    width: 100%;
    max-width: 440px;

    margin-left: auto;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.about-value:hover {
    border-bottom-color: var(--grey);
}

.about-value:hover .about-value__name {
    transform: translateX(10px);
}

.about-value:hover .about-value__description {
    opacity: 1;
}


/* =========================================================
   ABOUT APPROACH
   ========================================================= */

.about-approach {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.about-approach__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.75fr)
        minmax(0, 1.15fr);

    align-items: start;

    gap: clamp(100px, 12vw, 190px);

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.about-approach__content {
    width: 100%;

    border-top: 1px solid var(--border);
}

.about-approach-row {
    width: 100%;

    padding:
        clamp(34px, 3.5vw, 48px)
        0;

    border-bottom: 1px solid var(--border);

    transition: border-color 0.3s ease;
}

.about-approach-row h3 {
    margin: 0 0 18px;

    color: var(--grey);

    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.about-approach-row p {
    width: 100%;
    max-width: 450px;

    margin: 0;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.75;

    opacity: 0.75;

    transition: opacity 0.3s ease;
}

.about-approach-row:hover {
    border-bottom-color: var(--grey);
}

.about-approach-row:hover p {
    opacity: 1;
}

.about-approach__cta {
    padding-top: 44px;
}

.about-approach__cta p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.6;
}

.about-approach__heading {
    width: 100%;
    max-width: 760px;

    padding-left: clamp(30px, 3vw, 55px);
}

.about-approach__heading .section-title {
    max-width: 760px;
}

.about-approach__heading-copy {
    width: 100%;
    max-width: 560px;

    margin-top: clamp(44px, 4.5vw, 64px);
}

.about-approach__heading-copy p {
    margin: 0;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.about-approach__heading-copy p + p {
    margin-top: 24px;
}

.about-approach__heading-copy p:first-child {
    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.55;

    letter-spacing: -0.02em;
}


/* =========================================================
   ABOUT AUDIENCES
   ========================================================= */

.about-audiences {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.about-audiences__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.about-audiences__intro {
    width: 100%;
    max-width: 900px;

    margin-bottom: clamp(90px, 9vw, 140px);
}

.about-audiences__intro .section-title {
    max-width: 900px;
}

.about-audiences__list {
    width: 100%;

    border-top: 1px solid var(--border);
}

.about-audience-row {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: clamp(210px, 16vw, 270px);

    padding:
        clamp(44px, 5vw, 70px)
        80px
        clamp(44px, 5vw, 70px)
        0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    transition: border-color 0.3s ease;
}

.about-audience-row__title {
    flex: 0 0 48%;

    padding-right: 70px;
}

.about-audience-row__title h3 {
    margin: 0;

    color: var(--grey);

    font-size: clamp(42px, 4.4vw, 74px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.055em;

    transition: transform 0.3s ease;
}

.about-audience-row__copy {
    width: 100%;
    max-width: 470px;

    margin-left: auto;
}

.about-audience-row__copy p {
    margin: 0;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.about-audience-row__arrow {
    position: absolute;

    top: 50%;
    right: 4px;

    color: var(--grey);

    font-size: 24px;

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.about-audience-row:hover {
    border-bottom-color: var(--grey);
}

.about-audience-row:hover .about-audience-row__title h3 {
    transform: translateX(10px);
}

.about-audience-row:hover .about-audience-row__copy p {
    opacity: 1;
}

.about-audience-row:hover .about-audience-row__arrow {
    transform:
        translateY(-50%)
        translateX(7px);
}


/* =========================================================
   ABOUT FINAL CTA
   ========================================================= */

.about-final-cta {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.about-final-cta__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    text-align: center;
}

.about-final-cta .section-eyebrow {
    width: 100%;

    text-align: center;
}

.about-final-cta__title {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(82px, 10vw, 170px);
    font-weight: 500;
    line-height: 0.86;

    letter-spacing: -0.07em;

    text-align: center;
}

.about-final-cta__title span {
    display: block;
}

.about-final-cta__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 760px;

    margin:
        clamp(70px, 8vw, 110px)
        auto
        0;

    padding-top: 38px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.about-final-cta__bottom p {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.7;

    text-align: center;
}

.about-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    min-width: 220px;
    min-height: 62px;

    margin-top: 36px;
    padding: 0 28px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.about-final-cta__button span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.about-final-cta__button:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}

.about-final-cta__button:hover span {
    transform: translateX(6px);
}


/* =========================================================
   ABOUT TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about-intro__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.8fr);

        gap: 60px;
    }

    .about-intro__heading {
        padding-left: clamp(70px, 6vw, 100px);
    }

    .about-intro__content {
        margin-right: 0;
    }

    .about-approach__inner {
        grid-template-columns:
            minmax(330px, 0.8fr)
            minmax(0, 1fr);

        gap: 70px;
    }

    .about-approach__heading {
        padding-left: 20px;
    }

    .about-approach__heading-copy {
        max-width: 500px;
    }
}


/* =========================================================
   ABOUT MOBILE HERO
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: calc(100svh - var(--header-height));

        padding:
            60px
            var(--page-padding);
    }

    .about-hero__title {
        font-size: clamp(56px, 11vw, 92px);
        line-height: 0.92;
    }

    .about-hero__copy {
        max-width: 500px;

        margin-top: 34px;

        font-size: 16px;
    }
}


/* =========================================================
   ABOUT MOBILE CONTENT
   ========================================================= */

@media (max-width: 760px) {

    .about-hero__eyebrow {
        font-size: 10px;
    }

    .about-hero__title {
        max-width: 620px;

        font-size: clamp(50px, 12vw, 76px);
    }

    .about-hero__copy {
        max-width: 500px;

        font-size: 15px;
    }


    /* INTRO */

    .about-intro {
        display: block;

        min-height: auto;

        padding:
            90px
            var(--page-padding);
    }

    .about-intro__inner {
        display: block;
    }

    .about-intro__heading {
        padding-left: 0;
    }

    .about-intro__content {
        max-width: 520px;

        margin: 54px 0 0;
    }

    .about-intro__content .about-intro__lead {
        font-size: 19px;
    }

    .about-intro__content p {
        font-size: 15px;
    }


    /* VALUES */

    .about-values {
        padding:
            90px
            var(--page-padding);
    }

    .about-values__intro {
        max-width: 620px;

        margin-bottom: 70px;
    }

    .about-values__intro-copy {
        max-width: 500px;

        margin-top: 30px;

        font-size: 15px;
    }

    .about-value {
        display: block;

        min-height: 0;

        padding: 34px 0;
    }

    .about-value__name {
        width: 100%;

        padding: 0;

        font-size: clamp(28px, 8vw, 40px);
    }

    .about-value__description {
        max-width: 480px;

        margin: 18px 0 0;

        font-size: 14px;
    }

    .about-value:hover .about-value__name {
        transform: none;
    }


    /* APPROACH */

    .about-approach {
        display: block;

        min-height: auto;

        padding:
            90px
            var(--page-padding);
    }

    .about-approach__inner {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .about-approach__heading {
        order: 1;

        max-width: 620px;

        padding-left: 0;
    }

    .about-approach__heading-copy {
        max-width: 520px;

        margin-top: 36px;
    }

    .about-approach__heading-copy p {
        font-size: 15px;
    }

    .about-approach__heading-copy p:first-child {
        font-size: 19px;
    }

    .about-approach__content {
        order: 2;

        max-width: 540px;

        margin-top: 65px;
    }

    .about-approach-row {
        padding: 32px 0;
    }

    .about-approach-row h3 {
        margin-bottom: 16px;

        font-size: 27px;
    }

    .about-approach-row p {
        font-size: 15px;
    }


    /* AUDIENCES */

    .about-audiences {
        padding:
            90px
            var(--page-padding);
    }

    .about-audiences__intro {
        margin-bottom: 70px;
    }

    .about-audience-row {
        display: block;

        min-height: 0;

        padding:
            40px
            44px
            40px
            0;
    }

    .about-audience-row__title {
        width: 100%;

        padding: 0;
    }

    .about-audience-row__title h3 {
        font-size: clamp(38px, 10vw, 52px);
    }

    .about-audience-row__copy {
        max-width: 500px;

        margin: 24px 0 0;
    }

    .about-audience-row__copy p {
        font-size: 15px;
    }

    .about-audience-row__arrow {
        top: 45px;
        right: 0;

        transform: none;
    }

    .about-audience-row:hover .about-audience-row__title h3 {
        transform: none;
    }

    .about-audience-row:hover .about-audience-row__arrow {
        transform: translateX(5px);
    }


    /* FINAL CTA */

    .about-final-cta {
        min-height: 100svh;

        padding:
            90px
            var(--page-padding);
    }

    .about-final-cta__title {
        max-width: 100%;

        font-size: clamp(64px, 18vw, 100px);
        line-height: 0.89;

        letter-spacing: -0.065em;
    }

    .about-final-cta__bottom {
        max-width: 540px;

        margin-top: 60px;

        padding-top: 30px;
    }

    .about-final-cta__bottom p {
        max-width: 500px;

        font-size: 16px;
    }

    .about-final-cta__button {
        min-width: 220px;

        margin-top: 32px;
    }
}


/* =========================================================
   ABOUT SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-hero {
        padding:
            48px
            var(--page-padding);
    }

    .about-hero__eyebrow {
        margin-bottom: 26px;
    }

    .about-hero__title {
        font-size: clamp(45px, 13.2vw, 64px);
        line-height: 0.94;

        letter-spacing: -0.055em;
    }

    .about-hero__copy {
        max-width: 350px;

        margin-top: 32px;

        font-size: 15px;
        line-height: 1.6;
    }

    .about-hero__cta {
        min-height: 48px;

        margin-top: 28px;
        padding: 0 26px;
    }

    .about-intro,
    .about-values,
    .about-approach,
    .about-audiences,
    .about-final-cta {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .about-final-cta__title {
        font-size: clamp(58px, 17vw, 82px);
    }

    .about-final-cta__bottom {
        margin-top: 50px;
    }
}


/* =========================================================
   ABOUT SHORT DESKTOP
   ========================================================= */

@media (max-height: 700px) and (min-width: 901px) {

    .about-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .about-hero__eyebrow {
        margin-bottom: 24px;
    }

    .about-hero__copy {
        margin-top: 28px;
    }

    .about-hero__cta {
        margin-top: 24px;
    }

    .about-approach {
        min-height: auto;
    }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */


/* =========================================================
   SERVICES HERO
   ========================================================= */

.services-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));

    padding:
        clamp(70px, 9vh, 120px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);
}

.services-hero__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    text-align: center;
}

.services-hero__eyebrow {
    display: block;

    margin-bottom: clamp(30px, 4vh, 46px);

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.services-hero__title {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(64px, 7.8vw, 132px);
    font-weight: 500;
    line-height: 0.9;

    letter-spacing: -0.065em;

    text-align: center;
}

.services-hero__title span {
    display: block;
}

.services-hero__copy {
    width: 100%;
    max-width: 650px;

    margin-top: clamp(38px, 5vh, 56px);

    color: var(--grey);

    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.7;

    text-align: center;
}

.services-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 34px;
    padding: 0 30px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.services-hero__cta:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES INTRO
   ========================================================= */

.services-intro {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 820px;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.services-intro__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(70px, 8vw, 130px);

    width: 100%;
}

.services-intro__heading {
    width: 100%;

    padding-left: clamp(110px, 7vw, 145px);
}

.services-intro__heading .section-title {
    max-width: 780px;
}

.services-intro__content {
    width: 100%;
    max-width: 500px;

    margin-right: clamp(20px, 4vw, 70px);
}

.services-intro__content p {
    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.services-intro__content p + p {
    margin-top: 22px;
}

.services-intro__content .services-intro__lead {
    margin-bottom: 30px;

    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: -0.02em;
}

.services-intro__content .text-link {
    margin-top: 38px;
}


/* =========================================================
   FULL SERVICES LIST
   ========================================================= */

.services-list-section {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.services-list-section__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.services-list-section__intro {
    width: 100%;
    max-width: 850px;

    margin-bottom: clamp(80px, 8vw, 120px);
}

.services-list-section__intro .section-title {
    max-width: 820px;
}

.services-list-section__intro-copy {
    width: 100%;
    max-width: 570px;

    margin-top: 38px;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.services-page-list {
    width: 100%;

    border-top: 1px solid var(--border);
}

.services-page-row {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 170px;

    padding: 38px 70px 38px 0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    transition: border-color 0.3s ease;
}

.services-page-row__title {
    flex: 0 0 48%;

    padding-right: 60px;
}

.services-page-row__title h3 {
    margin: 0;

    color: var(--grey);

    font-size: clamp(30px, 2.8vw, 46px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;

    transition: transform 0.3s ease;
}

.services-page-row__copy {
    width: 100%;
    max-width: 460px;

    margin-left: auto;
}

.services-page-row__copy p {
    margin: 0;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.services-page-row__arrow {
    position: absolute;

    top: 50%;
    right: 4px;

    color: var(--grey);

    font-size: 23px;

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.services-page-row:hover {
    border-bottom-color: var(--grey);
}

.services-page-row:hover .services-page-row__title h3 {
    transform: translateX(10px);
}

.services-page-row:hover .services-page-row__copy p {
    opacity: 1;
}

.services-page-row:hover .services-page-row__arrow {
    transform:
        translateY(-50%)
        translateX(7px);
}


/* =========================================================
   PRICING
   ========================================================= */

.services-pricing {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.services-pricing__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.services-pricing__intro {
    width: 100%;
    max-width: 900px;

    margin-bottom: clamp(80px, 8vw, 120px);
}

.services-pricing__intro .section-title {
    max-width: 850px;
}

.services-pricing__intro > p {
    width: 100%;
    max-width: 570px;

    margin-top: 38px;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.services-pricing__intro .services-pricing__note {
    width: 100%;
    max-width: 650px;

    margin-top: 22px;
    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: var(--grey);

    font-size: 14px;
    line-height: 1.7;

    opacity: 0.72;
}

.services-pricing__list {
    width: 100%;

    border-top: 1px solid var(--border);
}

.services-price-row {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 150px;

    padding: 30px 80px 30px 0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    transition: border-color 0.3s ease;
}

.services-price-row__service {
    flex: 1;

    padding-right: 50px;

    color: var(--grey);

    font-size: clamp(28px, 2.7vw, 44px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;

    transition: transform 0.3s ease;
}

.services-price-row__price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;

    gap: 12px;

    min-width: 250px;

    color: var(--grey);

    font-size: clamp(38px, 4vw, 64px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -0.05em;
}

.services-price-row__price span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.65;
}

.services-price-row__arrow {
    position: absolute;

    top: 50%;
    right: 4px;

    color: var(--grey);

    font-size: 23px;

    transform: translateY(-50%);

    transition: transform 0.3s ease;
}

.services-price-row:hover {
    border-bottom-color: var(--grey);
}

.services-price-row:hover .services-price-row__service {
    transform: translateX(10px);
}

.services-price-row:hover .services-price-row__arrow {
    transform:
        translateY(-50%)
        translateX(7px);
}


/* =========================================================
   SERVICES DETAIL
   ========================================================= */

.services-detail {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 820px;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.services-detail__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(70px, 8vw, 130px);

    width: 100%;
}

.services-detail__heading {
    width: 100%;

    padding-left: clamp(110px, 7vw, 145px);
}

.services-detail__heading .section-title {
    max-width: 800px;
}

.services-detail__content {
    width: 100%;
    max-width: 500px;

    margin-right: clamp(20px, 4vw, 70px);
}

.services-detail__content p {
    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.services-detail__content p + p {
    margin-top: 22px;
}

.services-detail__content .services-detail__lead {
    margin-bottom: 30px;

    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: -0.02em;
}

.services-detail__content .text-link {
    margin-top: 38px;
}


/* =========================================================
   SERVICES FINAL CTA
   ========================================================= */

.services-final-cta {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.services-final-cta__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    text-align: center;
}

.services-final-cta .section-eyebrow {
    width: 100%;

    text-align: center;
}

.services-final-cta__title {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(82px, 10vw, 170px);
    font-weight: 500;
    line-height: 0.86;

    letter-spacing: -0.07em;

    text-align: center;
}

.services-final-cta__title span {
    display: block;
}

.services-final-cta__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 760px;

    margin:
        clamp(70px, 8vw, 110px)
        auto
        0;

    padding-top: 38px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.services-final-cta__bottom p {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.7;

    text-align: center;
}

.services-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    min-width: 220px;
    min-height: 62px;

    margin-top: 36px;
    padding: 0 28px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.services-final-cta__button span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.services-final-cta__button:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}

.services-final-cta__button:hover span {
    transform: translateX(6px);
}


/* =========================================================
   SERVICES TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .services-intro__inner,
    .services-detail__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.8fr);

        gap: 60px;
    }

    .services-intro__heading,
    .services-detail__heading {
        padding-left: clamp(70px, 6vw, 100px);
    }

    .services-intro__content,
    .services-detail__content {
        margin-right: 0;
    }
}


/* =========================================================
   SERVICES MOBILE HERO
   ========================================================= */

@media (max-width: 900px) {

    .services-hero {
        min-height: calc(100svh - var(--header-height));

        padding:
            60px
            var(--page-padding);
    }

    .services-hero__title {
        font-size: clamp(56px, 11vw, 92px);
        line-height: 0.92;
    }

    .services-hero__copy {
        max-width: 500px;

        margin-top: 34px;

        font-size: 16px;
    }
}


/* =========================================================
   SERVICES MOBILE CONTENT
   ========================================================= */

@media (max-width: 760px) {

    .services-hero__eyebrow {
        font-size: 10px;
    }

    .services-hero__title {
        max-width: 620px;

        font-size: clamp(50px, 12vw, 76px);
    }

    .services-hero__copy {
        max-width: 500px;

        font-size: 15px;
    }


    /* INTRO */

    .services-intro,
    .services-detail {
        display: block;

        min-height: auto;

        padding:
            90px
            var(--page-padding);
    }

    .services-intro__inner,
    .services-detail__inner {
        display: block;
    }

    .services-intro__heading,
    .services-detail__heading {
        padding-left: 0;
    }

    .services-intro__content,
    .services-detail__content {
        max-width: 520px;

        margin: 54px 0 0;
    }

    .services-intro__content .services-intro__lead,
    .services-detail__content .services-detail__lead {
        font-size: 19px;
    }

    .services-intro__content p,
    .services-detail__content p {
        font-size: 15px;
    }


    /* SERVICES LIST */

    .services-list-section {
        padding:
            90px
            var(--page-padding);
    }

    .services-list-section__intro {
        max-width: 620px;

        margin-bottom: 70px;
    }

    .services-list-section__intro-copy {
        max-width: 500px;

        margin-top: 30px;

        font-size: 15px;
    }

    .services-page-row {
        display: block;

        min-height: 0;

        padding: 36px 44px 36px 0;
    }

    .services-page-row__title {
        width: 100%;

        padding: 0;
    }

    .services-page-row__title h3 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .services-page-row__copy {
        max-width: 480px;

        margin: 20px 0 0;
    }

    .services-page-row__copy p {
        font-size: 14px;
    }

    .services-page-row__arrow {
        top: 40px;
        right: 0;

        transform: none;
    }

    .services-page-row:hover .services-page-row__title h3 {
        transform: none;
    }

    .services-page-row:hover .services-page-row__arrow {
        transform: translateX(5px);
    }


    /* PRICING */

    .services-pricing {
        padding:
            90px
            var(--page-padding);
    }

    .services-pricing__intro {
        margin-bottom: 70px;
    }

    .services-pricing__intro > p {
        margin-top: 30px;

        font-size: 15px;
    }

    .services-pricing__intro .services-pricing__note {
        max-width: 520px;

        margin-top: 20px;
        padding-top: 20px;

        font-size: 13px;
    }

    .services-price-row {
        display: block;

        min-height: 0;

        padding: 34px 44px 34px 0;
    }

    .services-price-row__service {
        width: 100%;

        padding-right: 0;

        font-size: clamp(27px, 8vw, 40px);
    }

    .services-price-row__price {
        justify-content: flex-start;

        min-width: 0;

        margin-top: 20px;

        font-size: clamp(38px, 11vw, 54px);
    }

    .services-price-row__arrow {
        top: 38px;
        right: 0;

        transform: none;
    }

    .services-price-row:hover .services-price-row__service {
        transform: none;
    }

    .services-price-row:hover .services-price-row__arrow {
        transform: translateX(5px);
    }


    /* FINAL CTA */

    .services-final-cta {
        min-height: 100svh;

        padding:
            90px
            var(--page-padding);
    }

    .services-final-cta__title {
        max-width: 100%;

        font-size: clamp(64px, 18vw, 100px);
        line-height: 0.89;

        letter-spacing: -0.065em;
    }

    .services-final-cta__bottom {
        max-width: 540px;

        margin-top: 60px;

        padding-top: 30px;
    }

    .services-final-cta__bottom p {
        max-width: 500px;

        font-size: 16px;
    }

    .services-final-cta__button {
        min-width: 220px;

        margin-top: 32px;
    }
}


/* =========================================================
   SERVICES SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .services-hero {
        padding:
            48px
            var(--page-padding);
    }

    .services-hero__eyebrow {
        margin-bottom: 26px;
    }

    .services-hero__title {
        font-size: clamp(45px, 13.2vw, 64px);
        line-height: 0.94;

        letter-spacing: -0.055em;
    }

    .services-hero__copy {
        max-width: 350px;

        margin-top: 32px;

        font-size: 15px;
        line-height: 1.6;
    }

    .services-hero__cta {
        min-height: 48px;

        margin-top: 28px;
        padding: 0 26px;
    }

    .services-intro,
    .services-list-section,
    .services-pricing,
    .services-detail,
    .services-final-cta {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .services-pricing__intro .services-pricing__note {
        font-size: 13px;
        line-height: 1.65;
    }

    .services-price-row__price {
        gap: 9px;
    }

    .services-price-row__price span {
        font-size: 10px;
    }

    .services-final-cta__title {
        font-size: clamp(58px, 17vw, 82px);
    }

    .services-final-cta__bottom {
        margin-top: 50px;
    }
}


/* =========================================================
   SERVICES SHORT DESKTOP
   ========================================================= */

@media (max-height: 700px) and (min-width: 901px) {

    .services-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .services-hero__eyebrow {
        margin-bottom: 24px;
    }

    .services-hero__copy {
        margin-top: 28px;
    }

    .services-hero__cta {
        margin-top: 24px;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));

    padding:
        clamp(70px, 9vh, 120px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);
}

.contact-hero__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    text-align: center;
}

.contact-hero__eyebrow {
    display: block;

    margin-bottom: clamp(30px, 4vh, 46px);

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-hero__title {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(64px, 7.8vw, 132px);
    font-weight: 500;
    line-height: 0.9;

    letter-spacing: -0.065em;

    text-align: center;
}

.contact-hero__title span {
    display: block;
}

.contact-hero__copy {
    width: 100%;
    max-width: 620px;

    margin-top: clamp(38px, 5vh, 56px);

    color: var(--grey);

    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.7;

    text-align: center;
}

.contact-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    margin-top: 34px;
    padding: 0 30px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    color: var(--grey);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-hero__cta:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}


/* =========================================================
   CONTACT MAIN
   ========================================================= */

.contact-main {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);

    scroll-margin-top: var(--header-height);
}

.contact-main__inner {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.82fr);

    align-items: start;

    gap: clamp(90px, 10vw, 160px);

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}


/* =========================================================
   CONTACT INTRO
   ========================================================= */

.contact-main__intro {
    width: 100%;
    max-width: 720px;

    padding-left: clamp(70px, 5vw, 110px);
}

.contact-main__intro .section-title {
    max-width: 720px;
}

.contact-main__copy {
    width: 100%;
    max-width: 530px;

    margin-top: clamp(46px, 5vw, 70px);
}

.contact-main__copy p {
    margin: 0;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.contact-main__copy p + p {
    margin-top: 22px;
}

.contact-main__copy .contact-main__lead {
    margin-bottom: 30px;

    font-size: clamp(19px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: -0.02em;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details {
    width: 100%;
    max-width: 530px;

    margin-top: clamp(60px, 6vw, 90px);

    border-top: 1px solid var(--border);
}

.contact-detail {
    display: grid;

    grid-template-columns:
        minmax(110px, 0.35fr)
        minmax(0, 1fr);

    gap: 30px;

    width: 100%;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.contact-detail__label {
    color: var(--grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    opacity: 0.7;
}

.contact-detail > span:not(.contact-detail__label),
.contact-detail > a {
    color: var(--grey);

    font-size: 14px;
    line-height: 1.6;
}

.contact-detail > a {
    transition: opacity 0.25s ease;
}

.contact-detail > a:hover {
    opacity: 0.65;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-wrap {
    width: 100%;
}

.contact-form {
    width: 100%;

    border-top: 1px solid var(--grey);
}

.contact-form__field {
    position: relative;

    width: 100%;

    padding: 28px 0 24px;

    border-bottom: 1px solid var(--border);

    transition: border-color 0.25s ease;
}

.contact-form__field:focus-within {
    border-bottom-color: var(--grey);
}

.contact-form__field label {
    display: block;

    margin-bottom: 13px;

    color: var(--grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    opacity: 0.72;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;

    outline: 0;

    background: transparent;

    color: var(--grey);

    font-family: var(--font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;

    appearance: none;
    -webkit-appearance: none;
}

.contact-form__field input {
    min-height: 34px;
}

.contact-form__field textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-form__field select {
    min-height: 38px;

    cursor: pointer;
}

.contact-form__field select option {
    background: var(--black);
    color: var(--grey);
}

.contact-form__field input:-webkit-autofill,
.contact-form__field input:-webkit-autofill:hover,
.contact-form__field input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--grey);

    -webkit-box-shadow:
        0 0 0 1000px var(--black) inset;

    transition:
        background-color 5000s ease-in-out 0s;
}

.contact-form__honey {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTACT CONSENT
   ========================================================= */

.contact-form__consent {
    width: 100%;

    padding-top: 28px;
}

.contact-form__consent label {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    cursor: pointer;
}

.contact-form__consent input {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    margin: 4px 0 0;

    border: 1px solid var(--grey);
    border-radius: 0;

    accent-color: var(--grey);

    cursor: pointer;
}

.contact-form__consent span {
    max-width: 460px;

    color: var(--grey);

    font-size: 12px;
    line-height: 1.7;

    opacity: 0.72;
}

.contact-form__consent a {
    position: relative;

    color: var(--grey);

    font-weight: 700;
}

.contact-form__consent a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -2px;
    left: 0;

    height: 1px;

    background: var(--grey);
}


/* =========================================================
   CONTACT SUBMIT
   ========================================================= */

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    min-width: 210px;
    min-height: 60px;

    margin-top: 38px;
    padding: 0 28px;

    border: 1px solid var(--grey);
    border-radius: 100px;

    background: transparent;

    color: var(--grey);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-form__submit span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.contact-form__submit:hover {
    background: var(--grey);
    color: var(--black);

    transform: translateY(-2px);
}

.contact-form__submit:hover span {
    transform: translateX(6px);
}


/* =========================================================
   CONTACT PROCESS
   ========================================================= */

.contact-process {
    position: relative;

    width: 100%;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.contact-process__inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.contact-process__intro {
    width: 100%;
    max-width: 850px;

    margin-bottom: clamp(80px, 8vw, 120px);
}

.contact-process__intro .section-title {
    max-width: 820px;
}

.contact-process__intro > p {
    width: 100%;
    max-width: 560px;

    margin-top: 38px;

    color: var(--grey);

    font-size: 16px;
    line-height: 1.75;
}

.contact-process__list {
    width: 100%;

    border-top: 1px solid var(--border);
}

.contact-process-row {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 145px;

    padding: 34px 0;

    border-bottom: 1px solid var(--border);

    transition: border-color 0.3s ease;
}

.contact-process-row h3 {
    flex: 0 0 48%;

    margin: 0;
    padding-right: 50px;

    color: var(--grey);

    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;

    transition: transform 0.3s ease;
}

.contact-process-row p {
    width: 100%;
    max-width: 440px;

    margin: 0 0 0 auto;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.72;

    transition: opacity 0.3s ease;
}

.contact-process-row:hover {
    border-bottom-color: var(--grey);
}

.contact-process-row:hover h3 {
    transform: translateX(10px);
}

.contact-process-row:hover p {
    opacity: 1;
}


/* =========================================================
   CONTACT REASSURANCE
   ========================================================= */

.contact-reassurance {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 90vh;
    min-height: 90svh;

    padding:
        clamp(120px, 10vw, 180px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-top: 1px solid var(--border);
}

.contact-reassurance__inner {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    text-align: center;
}

.contact-reassurance .section-eyebrow {
    text-align: center;
}

.contact-reassurance__title {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    color: var(--grey);

    font-size: clamp(72px, 8.5vw, 145px);
    font-weight: 500;
    line-height: 0.88;

    letter-spacing: -0.065em;

    text-align: center;
}

.contact-reassurance__title span {
    display: block;
}

.contact-reassurance__inner > p {
    width: 100%;
    max-width: 620px;

    margin-top: clamp(50px, 6vw, 80px);

    color: var(--grey);

    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.75;

    text-align: center;
}


/* =========================================================
   CONTACT TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .contact-main__inner {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(380px, 0.85fr);

        gap: 70px;
    }

    .contact-main__intro {
        padding-left: 40px;
    }
}


/* =========================================================
   CONTACT MOBILE HERO
   ========================================================= */

@media (max-width: 900px) {

    .contact-hero {
        min-height: calc(100svh - var(--header-height));

        padding:
            60px
            var(--page-padding);
    }

    .contact-hero__title {
        font-size: clamp(56px, 11vw, 92px);
        line-height: 0.92;
    }

    .contact-hero__copy {
        max-width: 500px;

        margin-top: 34px;

        font-size: 16px;
    }
}


/* =========================================================
   CONTACT MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .contact-hero__eyebrow {
        font-size: 10px;
    }

    .contact-hero__title {
        max-width: 620px;

        font-size: clamp(50px, 12vw, 76px);
    }

    .contact-hero__copy {
        max-width: 500px;

        font-size: 15px;
    }


    /* MAIN */

    .contact-main {
        padding:
            90px
            var(--page-padding);
    }

    .contact-main__inner {
        display: block;
    }

    .contact-main__intro {
        max-width: 620px;

        padding-left: 0;
    }

    .contact-main__copy {
        max-width: 520px;

        margin-top: 44px;
    }

    .contact-main__copy .contact-main__lead {
        font-size: 19px;
    }

    .contact-main__copy p {
        font-size: 15px;
    }

    .contact-details {
        max-width: 520px;

        margin-top: 60px;
    }

    .contact-form-wrap {
        max-width: 620px;

        margin-top: 80px;
    }

    .contact-form__field {
        padding:
            25px
            0
            22px;
    }

    .contact-form__field input,
    .contact-form__field select,
    .contact-form__field textarea {
        font-size: 17px;
    }


    /* PROCESS */

    .contact-process {
        padding:
            90px
            var(--page-padding);
    }

    .contact-process__intro {
        max-width: 620px;

        margin-bottom: 70px;
    }

    .contact-process__intro > p {
        max-width: 500px;

        margin-top: 30px;

        font-size: 15px;
    }

    .contact-process-row {
        display: block;

        min-height: 0;

        padding: 34px 0;
    }

    .contact-process-row h3 {
        width: 100%;

        padding: 0;

        font-size: clamp(28px, 8vw, 40px);
    }

    .contact-process-row p {
        max-width: 480px;

        margin: 18px 0 0;

        font-size: 14px;
    }

    .contact-process-row:hover h3 {
        transform: none;
    }


    /* REASSURANCE */

    .contact-reassurance {
        min-height: 85svh;

        padding:
            90px
            var(--page-padding);
    }

    .contact-reassurance__title {
        font-size: clamp(58px, 15vw, 92px);
        line-height: 0.91;
    }

    .contact-reassurance__inner > p {
        max-width: 500px;

        margin-top: 44px;

        font-size: 16px;
    }
}


/* =========================================================
   CONTACT SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        padding:
            48px
            var(--page-padding);
    }

    .contact-hero__eyebrow {
        margin-bottom: 26px;
    }

    .contact-hero__title {
        font-size: clamp(45px, 13.2vw, 64px);
        line-height: 0.94;

        letter-spacing: -0.055em;
    }

    .contact-hero__copy {
        max-width: 350px;

        margin-top: 32px;

        font-size: 15px;
        line-height: 1.6;
    }

    .contact-hero__cta {
        min-height: 48px;

        margin-top: 28px;
        padding: 0 26px;
    }

    .contact-main,
    .contact-process,
    .contact-reassurance {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .contact-detail {
        display: block;

        padding: 20px 0;
    }

    .contact-detail__label {
        display: block;

        margin-bottom: 8px;
    }

    .contact-form-wrap {
        margin-top: 68px;
    }

    .contact-form__submit {
        width: 100%;

        min-height: 58px;
    }

    .contact-reassurance__title {
        font-size: clamp(52px, 14vw, 72px);
    }
}


/* =========================================================
   CONTACT SHORT DESKTOP
   ========================================================= */

@media (max-height: 700px) and (min-width: 901px) {

    .contact-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .contact-hero__eyebrow {
        margin-bottom: 24px;
    }

    .contact-hero__copy {
        margin-top: 28px;
    }

    .contact-hero__cta {
        margin-top: 24px;
    }
}

/* =========================================================
   MOBILE POLISH
   HOME / ABOUT / SERVICES / CONTACT
   ========================================================= */

@media (max-width: 760px) {

    /* ---------------------------------------------------------
       MOBILE PAGE FOUNDATION
       --------------------------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        -webkit-text-size-adjust: 100%;
    }

    .site-main {
        width: 100%;
        overflow: hidden;
    }


    /* ---------------------------------------------------------
       MOBILE HERO SYSTEM
       --------------------------------------------------------- */

    .home-hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;

        min-height: calc(100svh - var(--header-height));

        padding:
            clamp(52px, 8vh, 78px)
            var(--page-padding)
            clamp(58px, 9vh, 84px);

        overflow: hidden;

        background: var(--black);
    }

    .home-hero__inner,
    .about-hero__inner,
    .services-hero__inner,
    .contact-hero__inner {
        position: relative;
        z-index: 3;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;

        text-align: center;
    }


    /* ---------------------------------------------------------
       HERO BRAND MARK
       --------------------------------------------------------- */

    .hero-brandmark {
        position: absolute;
        z-index: 1;

        top: 48%;
        left: 74%;

        width: 108vw;
        max-width: none;

        transform: translate(-50%, -50%);

        opacity: 0.115;

        pointer-events: none;
        user-select: none;
    }

    .hero-brandmark img {
        display: block;

        width: 100%;
        max-width: none;
        height: auto;
    }


    /* ---------------------------------------------------------
       HERO EYEBROWS
       --------------------------------------------------------- */

    .home-hero__eyebrow,
    .about-hero__eyebrow,
    .services-hero__eyebrow,
    .contact-hero__eyebrow {
        position: relative;
        z-index: 3;

        display: block;

        width: 100%;

        margin: 0 0 28px;

        color: var(--grey);

        font-size: 10px;
        font-weight: 700;
        line-height: 1.3;

        letter-spacing: 0.17em;
        text-align: center;
        text-transform: uppercase;
    }


    /* ---------------------------------------------------------
       HERO HEADLINES
       --------------------------------------------------------- */

    .home-hero__title,
    .about-hero__title,
    .services-hero__title,
    .contact-hero__title {
        position: relative;
        z-index: 3;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;

        color: var(--grey);

        font-size: clamp(47px, 12.7vw, 74px);
        font-weight: 500;
        line-height: 0.93;

        letter-spacing: -0.058em;

        text-align: center;
        text-wrap: balance;

        overflow: visible;
    }

    .home-hero__title span,
    .about-hero__title span,
    .services-hero__title span,
    .contact-hero__title span {
        display: block;

        padding-bottom: 0.07em;

        overflow: visible;
    }


    /* ---------------------------------------------------------
       HERO COPY
       --------------------------------------------------------- */

    .home-hero__copy,
    .about-hero__copy,
    .services-hero__copy,
    .contact-hero__copy {
        position: relative;
        z-index: 3;

        width: 100%;
        max-width: 390px;

        margin:
            clamp(30px, 5vh, 42px)
            auto
            0;

        color: var(--grey);

        font-size: 15px;
        font-weight: 400;
        line-height: 1.65;

        text-align: center;
    }


    /* ---------------------------------------------------------
       HERO CTA
       --------------------------------------------------------- */

    .home-hero__cta,
    .about-hero__cta,
    .services-hero__cta,
    .contact-hero__cta {
        position: relative;
        z-index: 3;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 150px;
        min-height: 50px;

        margin-top: 30px;
        padding: 0 27px;

        border: 1px solid var(--grey);
        border-radius: 100px;

        color: var(--grey);

        font-size: 13px;
        font-weight: 700;
        line-height: 1;

        text-align: center;
    }


    /* ---------------------------------------------------------
       SECTION TYPOGRAPHY
       --------------------------------------------------------- */

    .section-title {
        width: 100%;
        max-width: 100%;

        font-size: clamp(44px, 11.7vw, 62px);
        line-height: 0.98;

        letter-spacing: -0.052em;

        overflow: visible;
    }

    .section-title span {
        display: block;

        padding-bottom: 0.05em;

        overflow: visible;
    }

    .section-eyebrow {
        margin-bottom: 27px;

        font-size: 10px;
        line-height: 1.35;

        letter-spacing: 0.16em;
    }


    /* ---------------------------------------------------------
       MOBILE SECTION SPACING
       --------------------------------------------------------- */

    .home-intro,
    .home-services,
    .home-approach,
    .home-audiences,

    .about-intro,
    .about-values,
    .about-approach,
    .about-audiences,

    .services-intro,
    .services-list-section,
    .services-pricing,
    .services-detail,

    .contact-main,
    .contact-process {
        padding-top: 92px;
        padding-bottom: 92px;
    }


    /* ---------------------------------------------------------
       LONG FORM COPY
       --------------------------------------------------------- */

    .home-intro__content,
    .home-approach__heading-copy,

    .about-intro__content,
    .about-approach__heading-copy,

    .services-intro__content,
    .services-detail__content,

    .contact-main__copy {
        width: 100%;
        max-width: 520px;
    }

    .home-intro__content p,
    .home-approach__heading-copy p,

    .about-intro__content p,
    .about-approach__heading-copy p,

    .services-intro__content p,
    .services-detail__content p,

    .contact-main__copy p {
        font-size: 15px;
        line-height: 1.72;
    }


    /* ---------------------------------------------------------
       ROWS
       --------------------------------------------------------- */

    .home-service,
    .about-value,
    .services-page-row,
    .services-price-row,
    .audience-row,
    .about-audience-row,
    .contact-process-row {
        position: relative;

        width: 100%;

        min-height: 0;
    }


    /* ---------------------------------------------------------
       CONTACT FORM
       --------------------------------------------------------- */

    .contact-form-wrap {
        width: 100%;
        max-width: 100%;

        margin-top: 74px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form__field {
        padding:
            26px
            0
            23px;
    }

    .contact-form__field label {
        margin-bottom: 12px;
    }

    .contact-form__field input,
    .contact-form__field select,
    .contact-form__field textarea {
        width: 100%;

        font-size: 16px;
    }

    .contact-form__field textarea {
        min-height: 140px;
    }

    .contact-form__submit {
        min-height: 58px;
    }


    /* ---------------------------------------------------------
       FINAL CTA SYSTEM
       --------------------------------------------------------- */

    .home-final-cta,
    .about-final-cta,
    .services-final-cta {
        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 90svh;

        padding:
            100px
            var(--page-padding);
    }

    .home-final-cta__title,
    .about-final-cta__title,
    .services-final-cta__title {
        width: 100%;
        max-width: 100%;

        font-size: clamp(64px, 17vw, 96px);
        line-height: 0.89;

        letter-spacing: -0.065em;

        overflow: visible;
    }

    .home-final-cta__title span,
    .about-final-cta__title span,
    .services-final-cta__title span {
        display: block;

        padding-bottom: 0.06em;
    }

    .home-final-cta__bottom,
    .about-final-cta__bottom,
    .services-final-cta__bottom {
        width: 100%;
        max-width: 520px;

        margin-top: 56px;
        padding-top: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    /* ---------------------------------------------------------
       HERO
       --------------------------------------------------------- */

    .home-hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        min-height: calc(100svh - var(--header-height));

        padding:
            44px
            var(--page-padding)
            54px;
    }

    .hero-brandmark {
        top: 47%;
        left: 77%;

        width: 122vw;

        opacity: 0.105;
    }

    .home-hero__eyebrow,
    .about-hero__eyebrow,
    .services-hero__eyebrow,
    .contact-hero__eyebrow {
        margin-bottom: 25px;

        font-size: 9px;
        line-height: 1.35;

        letter-spacing: 0.17em;
    }

    .home-hero__title,
    .about-hero__title,
    .services-hero__title,
    .contact-hero__title {
        font-size: clamp(43px, 12.3vw, 60px);
        line-height: 0.95;

        letter-spacing: -0.055em;
    }

    .home-hero__copy,
    .about-hero__copy,
    .services-hero__copy,
    .contact-hero__copy {
        max-width: 340px;

        margin-top: 29px;

        font-size: 14px;
        line-height: 1.65;
    }

    .home-hero__cta,
    .about-hero__cta,
    .services-hero__cta,
    .contact-hero__cta {
        min-width: 145px;
        min-height: 48px;

        margin-top: 27px;
        padding: 0 24px;

        font-size: 12px;
    }


    /* ---------------------------------------------------------
       TYPOGRAPHY
       --------------------------------------------------------- */

    .section-title {
        font-size: clamp(40px, 11.3vw, 54px);
        line-height: 0.99;

        letter-spacing: -0.05em;
    }


    /* ---------------------------------------------------------
       SECTION SPACING
       --------------------------------------------------------- */

    .home-intro,
    .home-services,
    .home-approach,
    .home-audiences,

    .about-intro,
    .about-values,
    .about-approach,
    .about-audiences,

    .services-intro,
    .services-list-section,
    .services-pricing,
    .services-detail,

    .contact-main,
    .contact-process {
        padding-top: 78px;
        padding-bottom: 78px;
    }


    /* ---------------------------------------------------------
       PRICING
       --------------------------------------------------------- */

    .services-price-row {
        padding:
            30px
            36px
            30px
            0;
    }

    .services-price-row__service {
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.08;
    }

    .services-price-row__price {
        margin-top: 17px;

        font-size: clamp(38px, 11vw, 50px);
    }


    /* ---------------------------------------------------------
       CONTACT
       --------------------------------------------------------- */

    .contact-main__copy {
        margin-top: 38px;
    }

    .contact-details {
        margin-top: 52px;
    }

    .contact-form-wrap {
        margin-top: 62px;
    }

    .contact-form__field {
        padding:
            23px
            0
            21px;
    }

    .contact-form__submit {
        width: 100%;

        min-height: 56px;
    }


    /* ---------------------------------------------------------
       FINAL CTA
       --------------------------------------------------------- */

    .home-final-cta,
    .about-final-cta,
    .services-final-cta {
        min-height: 82svh;

        padding:
            86px
            var(--page-padding);
    }

    .home-final-cta__title,
    .about-final-cta__title,
    .services-final-cta__title {
        font-size: clamp(56px, 16.5vw, 78px);
        line-height: 0.91;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    :root {
        --page-padding: 18px;
    }

    .home-hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        padding-top: 38px;
        padding-bottom: 46px;
    }

    .hero-brandmark {
        left: 79%;

        width: 128vw;
    }

    .home-hero__title,
    .about-hero__title,
    .services-hero__title,
    .contact-hero__title {
        font-size: clamp(40px, 12vw, 48px);
        line-height: 0.96;
    }

    .home-hero__copy,
    .about-hero__copy,
    .services-hero__copy,
    .contact-hero__copy {
        max-width: 310px;

        font-size: 14px;
    }

    .section-title {
        font-size: clamp(38px, 11vw, 48px);
    }

    .contact-detail > a {
        overflow-wrap: anywhere;
    }
}


/* =========================================================
   SHORT MOBILE SCREENS
   ========================================================= */

@media (max-width: 760px) and (max-height: 700px) {

    .home-hero,
    .about-hero,
    .services-hero,
    .contact-hero {
        min-height: auto;

        padding-top: 52px;
        padding-bottom: 58px;
    }

    .home-hero__eyebrow,
    .about-hero__eyebrow,
    .services-hero__eyebrow,
    .contact-hero__eyebrow {
        margin-bottom: 20px;
    }

    .home-hero__copy,
    .about-hero__copy,
    .services-hero__copy,
    .contact-hero__copy {
        margin-top: 24px;
    }

    .home-hero__cta,
    .about-hero__cta,
    .services-hero__cta,
    .contact-hero__cta {
        margin-top: 23px;
    }
}

/* =========================================================
   FINAL MOBILE HEADER / NAV FIX
   Keeps the approved page styling intact.
   ========================================================= */

@media (max-width: 900px) {

    :root {
        --header-height: 128px;
    }

    .site-header {
        position: fixed;
        z-index: 5000;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        background: var(--black);
    }

    .site-header__inner {
        position: relative;
        z-index: 5002;
        width: 100%;
        height: var(--header-height);
        padding: 0 var(--page-padding);
        background: var(--black);
    }

    .site-header::after {
        z-index: 5003;
        left: calc(var(--page-padding) + 150px);
        pointer-events: none;
    }

    .site-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 140px;
        width: 140px;
        height: var(--header-height);
        overflow: visible;
    }

    .site-logo img {
        width: 125px;
        max-width: none;
        height: auto;
        margin: 0;
        transform: translateY(4px);
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 5004;
        display: block;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin-left: auto;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        touch-action: manipulation;
        pointer-events: auto;
    }

    .menu-toggle span {
        position: absolute;
        left: 8px;
        display: block;
        width: 32px;
        height: 1px;
        background: var(--grey);
        pointer-events: none;
        transition:
            top 0.3s ease,
            transform 0.3s ease;
    }

    .menu-toggle span:first-child {
        top: 18px;
    }

    .menu-toggle span:last-child {
        top: 29px;
    }

    body.menu-open .menu-toggle span:first-child {
        top: 24px;
        transform: rotate(45deg);
    }

    body.menu-open .menu-toggle span:last-child {
        top: 24px;
        transform: rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 5001;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 100dvh;
        padding:
            calc(var(--header-height) + 28px)
            var(--page-padding)
            32px;
        background: var(--black);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .mobile-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav nav {
        width: 100%;
    }

    .mobile-nav ul {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid var(--border);
    }

    .mobile-nav li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-nav li:first-child {
        border-top: 0;
    }

    .mobile-nav nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 76px;
        padding: 0;
        color: var(--grey);
        font-size: clamp(30px, 8vw, 42px);
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .mobile-nav__bottom {
        width: 100%;
        padding-top: 30px;
    }

    .mobile-nav__cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 18px;
        padding: 18px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        color: var(--grey);
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
    }

    .site-main {
        padding-top: var(--header-height);
    }
}

@media (max-width: 480px) {

    :root {
        --header-height: 124px;
    }

    .site-header,
    .site-header__inner {
        height: var(--header-height);
    }

    .site-header::after {
        left: calc(var(--page-padding) + 138px);
    }

    .site-logo {
        flex: 0 0 130px;
        width: 130px;
        height: var(--header-height);
    }

    .site-logo img {
        width: 118px;
        max-width: none;
        height: auto;
        transform: translateY(3px);
    }

    .menu-toggle {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
    }

    .menu-toggle span {
        left: 8px;
        width: 30px;
    }

    .menu-toggle span:first-child {
        top: 17px;
    }

    .menu-toggle span:last-child {
        top: 28px;
    }

    body.menu-open .menu-toggle span:first-child,
    body.menu-open .menu-toggle span:last-child {
        top: 23px;
    }

    .mobile-nav {
        padding:
            calc(var(--header-height) + 24px)
            var(--page-padding)
            26px;
    }

    .mobile-nav nav a {
        min-height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 782px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar .mobile-nav {
        top: 46px;
        height: calc(100dvh - 46px);
    }
}

@media (max-width: 900px) {

    .mobile-nav {
        position: fixed;
        z-index: 5001;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 100%;
        height: 100dvh;

        padding:
            calc(var(--header-height) + 28px)
            var(--page-padding)
            32px;

        background: var(--black);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle.is-active span:first-child {
        top: 24px;
        transform: rotate(45deg);
    }

    .menu-toggle.is-active span:last-child {
        top: 24px;
        transform: rotate(-45deg);
    }
}

/* =========================================================
   HEADER PHONE NUMBERS
   ========================================================= */

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

    margin-left: clamp(26px, 2.5vw, 42px);
}

.header-phones a {
    position: relative;

    color: var(--grey);

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    transition: opacity 0.25s ease;
}

.header-phones a + a {
    padding-left: 19px;
}

.header-phones a + a::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 1px;
    height: 16px;

    background: var(--border);

    transform: translateY(-50%);
}

.header-phones a:hover {
    opacity: 0.65;
}


/* =========================================================
   MOBILE PHONE NUMBERS
   ========================================================= */

.mobile-nav__phones {
    display: flex;
    flex-direction: column;

    width: 100%;

    margin-top: 18px;
}

.mobile-nav__phones a {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 14px 0;

    border-top: 1px solid var(--border);

    color: var(--grey);

    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: -0.02em;
}

.mobile-nav__phones a:last-child {
    border-bottom: 1px solid var(--border);
}


/* =========================================================
   RESPONSIVE HEADER PHONES
   ========================================================= */

@media (max-width: 1180px) {

    .header-phones {
        gap: 12px;
        margin-left: 22px;
    }

    .header-phones a {
        font-size: 11px;
    }

    .header-phones a + a {
        padding-left: 13px;
    }

    .header-cta {
        margin-left: 24px;
    }
}

@media (max-width: 900px) {

    .header-phones {
        display: none;
    }

}

/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;

    margin-top: 36px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.site-footer__contact .site-footer__heading {
    margin-bottom: 18px;
}

.site-footer__contact a {
    display: inline-block;

    padding: 5px 0;

    color: var(--grey);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-footer__contact a:hover {
    opacity: 0.65;
    transform: translateX(5px);
}

@media (max-width: 760px) {

    .site-footer__contact {
        max-width: 480px;

        margin-top: 32px;
        padding-top: 28px;
    }

}

@media (max-width: 480px) {

    .site-footer__contact a {
        font-size: 13px;
    }

}

/* =========================================================
   FIVE COLUMN FOOTER
   ========================================================= */

.site-footer__columns {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.2fr)
        minmax(100px, 0.45fr)
        minmax(210px, 0.9fr)
        minmax(190px, 0.8fr)
        minmax(190px, 0.7fr);

    gap: clamp(35px, 4vw, 70px);

    width: 100%;

    padding-bottom: clamp(70px, 6vw, 95px);
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;
}

.site-footer__contact .site-footer__heading {
    margin-bottom: 26px;
}

.site-footer__contact a {
    display: inline-block;

    padding: 7px 0;

    color: var(--grey);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

    white-space: nowrap;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-footer__contact a:hover {
    opacity: 0.65;
    transform: translateX(5px);
}


/* =========================================================
   FOOTER TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .site-footer__columns {
        grid-template-columns:
            minmax(240px, 1.1fr)
            minmax(90px, 0.45fr)
            minmax(190px, 0.85fr)
            minmax(175px, 0.75fr)
            minmax(170px, 0.65fr);

        gap: 30px;
    }

    .site-footer__contact a {
        font-size: 13px;
    }

}


/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-footer__columns {
        grid-template-columns: 1fr 1fr;

        gap: 55px 35px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__right {
        grid-column: auto;
        padding: 0;
        border: 0;
    }

    .site-footer__contact {
        margin: 0;
        padding: 0;
        border: 0;
    }

}


/* =========================================================
   FOOTER SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-footer__columns {
        display: block;
    }

    .site-footer__pages,
    .site-footer__services,
    .site-footer__contact,
    .site-footer__right {
        margin-top: 48px;
        padding-top: 42px;

        border-top: 1px solid var(--border);
    }

    .site-footer__contact a {
        font-size: 13px;
    }

}

/* =========================================================
   CONTACT PAGE - MULTIPLE PHONE NUMBERS
   ========================================================= */

.contact-detail__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.contact-detail__links a {
    display: inline-block;

    color: var(--grey);

    line-height: 1.5;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contact-detail__links a:hover {
    opacity: 0.65;
    transform: translateX(4px);
}

/* =========================================================
   POLICY PAGES
   ========================================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================================
   POLICY HERO
   ========================================================= */

.policy-hero {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: calc(78vh - var(--header-height));

    padding:
        clamp(90px, 9vw, 150px)
        var(--page-padding);

    overflow: hidden;

    background: var(--black);

    border-bottom: 1px solid var(--border);
}

.policy-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.policy-hero__eyebrow {
    display: block;

    margin-bottom: 32px;

    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.policy-hero__title {
    width: 100%;
    max-width: 1050px;

    margin: 0;

    color: var(--grey);

    font-size: clamp(76px, 9vw, 150px);
    font-weight: 500;
    line-height: 0.9;

    letter-spacing: -0.065em;
}

.policy-hero__title span {
    display: block;
}

.policy-hero__copy {
    width: 100%;
    max-width: 570px;

    margin: 42px 0 0;

    color: var(--grey);

    font-size: 17px;
    line-height: 1.75;

    opacity: 0.8;
}


/* =========================================================
   POLICY CONTENT
   ========================================================= */

.policy-content {
    position: relative;

    width: 100%;

    padding:
        clamp(100px, 9vw, 150px)
        var(--page-padding)
        clamp(110px, 10vw, 170px);

    overflow: visible;

    background: var(--black);
}

.policy-content__inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(250px, 0.42fr)
        minmax(0, 1fr);

    gap: clamp(80px, 9vw, 150px);

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    align-items: start;
}


/* =========================================================
   STICKY POLICY NAVIGATION
   ========================================================= */

.policy-sidebar {
    position: relative;

    width: 100%;

    align-self: stretch;
}

.policy-sidebar__inner {
    position: sticky;

    top: calc(var(--header-height) + 38px);

    width: 100%;
}

.policy-sidebar .section-eyebrow {
    display: block;

    margin-bottom: 25px;
}


/* =========================================================
   POLICY NAV
   ========================================================= */

.policy-nav {
    display: flex;
    flex-direction: column;

    width: 100%;

    border-top: 1px solid var(--border);
}

.policy-nav a {
    display: grid;

    grid-template-columns: 32px minmax(0, 1fr);

    gap: 12px;

    align-items: center;

    width: 100%;

    padding: 10px 0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;

    opacity: 0.68;

    transition:
        opacity 0.25s ease,
        padding-left 0.25s ease,
        border-color 0.25s ease;
}

.policy-nav a span {
    color: var(--grey);

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;

    opacity: 0.5;
}

.policy-nav a:hover {
    padding-left: 6px;

    border-color: var(--grey);

    opacity: 1;
}


/* =========================================================
   SIDEBAR META
   ========================================================= */

.policy-sidebar__meta {
    display: flex;
    flex-direction: column;

    width: 100%;

    margin-top: 28px;
}

.policy-sidebar__meta span {
    display: block;

    margin-bottom: 5px;

    color: var(--grey);

    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;

    opacity: 0.5;
}


/* =========================================================
   POLICY BODY
   ========================================================= */

.policy-body {
    width: 100%;
    max-width: 880px;
}

.policy-section {
    position: relative;

    width: 100%;

    padding:
        clamp(58px, 5vw, 82px)
        0;

    border-top: 1px solid var(--border);

    scroll-margin-top:
        calc(var(--header-height) + 40px);
}

.policy-section:first-child {
    padding-top: 0;

    border-top: 0;
}

.policy-section__number {
    display: block;

    margin-bottom: 22px;

    color: var(--grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.16em;

    opacity: 0.45;
}

.policy-section h2 {
    width: 100%;
    max-width: 760px;

    margin: 0 0 30px;

    color: var(--grey);

    font-size: clamp(34px, 3.1vw, 48px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.policy-section p {
    width: 100%;
    max-width: 760px;

    margin: 0 0 22px;

    color: var(--grey);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;

    opacity: 0.82;
}

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


/* =========================================================
   POLICY LISTS
   ========================================================= */

.policy-section ul {
    width: 100%;
    max-width: 760px;

    margin: 30px 0;
    padding: 0;

    list-style: none;

    border-top: 1px solid var(--border);
}

.policy-section li {
    position: relative;

    margin: 0;

    padding:
        15px
        0
        15px
        28px;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;

    opacity: 0.82;
}

.policy-section li::before {
    content: "";

    position: absolute;

    top: 26px;
    left: 0;

    width: 7px;
    height: 1px;

    background: var(--grey);
}


/* =========================================================
   POLICY LINKS
   ========================================================= */

.policy-section a {
    color: var(--grey);

    font-weight: 600;

    transition: opacity 0.25s ease;
}

.policy-section a:hover {
    opacity: 0.6;
}


/* =========================================================
   COMPANY DETAILS
   ========================================================= */

.policy-details {
    width: 100%;
    max-width: 760px;

    margin-top: 38px;

    border-top: 1px solid var(--border);
}

.policy-detail {
    display: grid;

    grid-template-columns:
        minmax(150px, 0.42fr)
        minmax(0, 1fr);

    gap: 30px;

    width: 100%;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}

.policy-detail > span {
    color: var(--grey);

    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.55;
}

.policy-detail strong,
.policy-detail > a,
.policy-detail > div {
    color: var(--grey);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.policy-detail > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 3px;
}


/* =========================================================
   FINAL CONTACT SECTION
   ========================================================= */

.policy-section--contact {
    margin-top: 30px;

    padding:
        clamp(72px, 6vw, 100px)
        0 0;
}

.policy-section--contact .section-eyebrow {
    display: block;

    margin-bottom: 28px;
}

.policy-section--contact h2 {
    width: 100%;
    max-width: 760px;

    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
}

.policy-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    max-width: 760px;

    margin-top: 40px;

    border-top: 1px solid var(--border);
}

.policy-contact a {
    display: block;

    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

    color: var(--grey);

    font-size: 17px;
    font-weight: 500;

    transition:
        opacity 0.25s ease,
        padding-left 0.25s ease,
        border-color 0.25s ease;
}

.policy-contact a:hover {
    padding-left: 8px;

    border-color: var(--grey);

    opacity: 0.65;
}


/* =========================================================
   POLICY TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .policy-content__inner {
        grid-template-columns:
            minmax(210px, 0.38fr)
            minmax(0, 1fr);

        gap: 60px;
    }

    .policy-nav a {
        grid-template-columns: 27px minmax(0, 1fr);

        gap: 9px;

        font-size: 11px;
    }

}


/* =========================================================
   POLICY MOBILE / TABLET NAV
   ========================================================= */

@media (max-width: 800px) {

    .policy-hero {
        min-height:
            calc(70svh - var(--header-height));
    }

    .policy-content__inner {
        display: block;
    }

    .policy-sidebar {
        width: 100%;

        margin-bottom: 70px;
    }

    .policy-sidebar__inner {
        position: static;
    }

    .policy-nav {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .policy-nav a:nth-child(odd) {
        padding-right: 20px;
    }

    .policy-nav a:nth-child(even) {
        padding-left: 20px;

        border-left: 1px solid var(--border);
    }

    .policy-nav a:nth-child(even):hover {
        padding-left: 26px;
    }

    .policy-sidebar__meta {
        margin-top: 28px;
    }

    .policy-body {
        max-width: none;
    }

}


/* =========================================================
   POLICY MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .policy-hero {
        min-height:
            calc(72svh - var(--header-height));

        padding:
            70px
            var(--page-padding)
            76px;
    }

    .policy-hero__eyebrow {
        margin-bottom: 26px;

        font-size: 10px;
    }

    .policy-hero__title {
        font-size:
            clamp(52px, 15vw, 76px);

        line-height: 0.94;
    }

    .policy-hero__copy {
        width: 100%;
        max-width: 390px;

        margin-top: 30px;

        font-size: 15px;
        line-height: 1.65;
    }

    .policy-content {
        padding:
            82px
            var(--page-padding)
            100px;
    }

    .policy-sidebar {
        margin-bottom: 62px;
    }

    .policy-section {
        padding: 55px 0;

        scroll-margin-top:
            calc(var(--header-height) + 24px);
    }

    .policy-section__number {
        margin-bottom: 18px;
    }

    .policy-section h2 {
        margin-bottom: 25px;

        font-size:
            clamp(32px, 8.5vw, 42px);

        line-height: 1.07;
    }

    .policy-section p {
        font-size: 15px;
        line-height: 1.75;
    }

    .policy-section li {
        padding:
            13px
            0
            13px
            24px;

        font-size: 14px;
    }

    .policy-detail {
        grid-template-columns: 1fr;

        gap: 8px;

        padding: 18px 0;
    }

    .policy-section--contact h2 {
        font-size:
            clamp(42px, 11vw, 58px);

        line-height: 0.98;
    }

    .policy-contact a {
        font-size: 15px;
    }

}


/* =========================================================
   POLICY SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .policy-hero {
        padding:
            58px
            var(--page-padding)
            66px;
    }

    .policy-hero__title {
        font-size:
            clamp(48px, 14vw, 64px);
    }

    .policy-content {
        padding:
            72px
            var(--page-padding)
            90px;
    }

    .policy-nav {
        display: flex;
        flex-direction: column;
    }

    .policy-nav a,
    .policy-nav a:nth-child(odd),
    .policy-nav a:nth-child(even) {
        grid-template-columns:
            30px
            minmax(0, 1fr);

        padding:
            11px
            0;

        border-left: 0;
    }

    .policy-nav a:hover,
    .policy-nav a:nth-child(even):hover {
        padding-left: 5px;
    }

}

/* =========================================================
   COOKIE CONSENT
   ========================================================= */

.cookie-banner {
    position: fixed;
    z-index: 5000;

    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;

    padding:
        28px
        var(--page-padding);

    border-top: 1px solid var(--border);

    background: var(--black);

    opacity: 0;
    visibility: hidden;

    transform: translateY(100%);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: clamp(50px, 7vw, 110px);

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.cookie-banner__content {
    width: 100%;
    max-width: 720px;
}

.cookie-banner__eyebrow,
.cookie-preferences__eyebrow {
    display: block;

    margin-bottom: 15px;

    color: var(--grey);

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.6;
}

.cookie-banner h2 {
    margin: 0 0 17px;

    color: var(--grey);

    font-size: clamp(30px, 2.8vw, 44px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -0.045em;
}

.cookie-banner p {
    width: 100%;
    max-width: 660px;

    margin: 0;

    color: var(--grey);

    font-size: 13px;
    line-height: 1.65;

    opacity: 0.76;
}

.cookie-banner p + p {
    margin-top: 8px;
}

.cookie-banner__policy a {
    border-bottom: 1px solid rgba(155, 155, 155, 0.5);

    color: var(--grey);

    font-weight: 600;

    transition:
        opacity 0.25s ease,
        border-color 0.25s ease;
}

.cookie-banner__policy a:hover {
    border-color: var(--grey);

    opacity: 1;
}


/* =========================================================
   COOKIE BUTTONS
   ========================================================= */

.cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 0 0 auto;

    gap: 10px;
}

.cookie-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border: 1px solid var(--border);
    border-radius: 100px;

    background: transparent;
    color: var(--grey);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.cookie-button:hover {
    border-color: var(--grey);
}

.cookie-button--primary {
    border-color: var(--grey);

    background: var(--grey);
    color: var(--black);
}

.cookie-button--primary:hover {
    background: transparent;
    color: var(--grey);
}

.cookie-button--text {
    border-color: transparent;
}

.cookie-button--text:hover {
    border-color: var(--border);
}


/* =========================================================
   COOKIE PREFERENCES OVERLAY
   ========================================================= */

.cookie-preferences {
    position: fixed;
    z-index: 6000;

    inset: 0;

    display: flex;
    align-items: stretch;
    justify-content: flex-end;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cookie-preferences.is-visible {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.cookie-preferences__backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    cursor: pointer;
}

.cookie-preferences__panel {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    width: min(620px, 100%);
    height: 100%;

    margin-left: auto;
    padding:
        clamp(38px, 4vw, 60px)
        clamp(28px, 4vw, 58px);

    overflow-y: auto;

    border-left: 1px solid var(--border);

    background: var(--black);

    transform: translateX(100%);

    transition: transform 0.35s ease;
}

.cookie-preferences.is-visible
.cookie-preferences__panel {
    transform: translateX(0);
}

body.cookie-preferences-open {
    overflow: hidden;
}


/* =========================================================
   COOKIE PREFERENCES HEADER
   ========================================================= */

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    width: 100%;

    padding-bottom: 32px;

    border-bottom: 1px solid var(--border);
}

.cookie-preferences__header h2 {
    margin: 0;

    color: var(--grey);

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.cookie-preferences__close {
    position: relative;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin: 0;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: border-color 0.25s ease;
}

.cookie-preferences__close:hover {
    border-color: var(--grey);
}

.cookie-preferences__close span {
    position: absolute;

    top: 20px;
    left: 11px;

    display: block;

    width: 18px;
    height: 1px;

    background: var(--grey);
}

.cookie-preferences__close span:first-child {
    transform: rotate(45deg);
}

.cookie-preferences__close span:last-child {
    transform: rotate(-45deg);
}


/* =========================================================
   COOKIE PREFERENCES INTRO
   ========================================================= */

.cookie-preferences__intro {
    width: 100%;

    padding: 30px 0 38px;
}

.cookie-preferences__intro p {
    width: 100%;
    max-width: 500px;

    margin: 0;

    color: var(--grey);

    font-size: 14px;
    line-height: 1.7;

    opacity: 0.78;
}

.cookie-preferences__intro p + p {
    margin-top: 16px;
}

.cookie-preferences__intro a {
    border-bottom: 1px solid var(--border);

    color: var(--grey);

    font-weight: 600;

    transition: border-color 0.25s ease;
}

.cookie-preferences__intro a:hover {
    border-color: var(--grey);
}


/* =========================================================
   COOKIE OPTIONS
   ========================================================= */

.cookie-preferences__options {
    width: 100%;

    border-top: 1px solid var(--border);
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 35px;

    width: 100%;

    padding: 27px 0;

    border-bottom: 1px solid var(--border);
}

.cookie-option__content {
    width: 100%;
    max-width: 440px;
}

.cookie-option__heading {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 10px;
}

.cookie-option h3 {
    margin: 0;

    color: var(--grey);

    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: -0.02em;
}

.cookie-option__status {
    color: var(--grey);

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    opacity: 0.5;
}

.cookie-option p {
    margin: 0;

    color: var(--grey);

    font-size: 13px;
    line-height: 1.65;

    opacity: 0.7;
}


/* =========================================================
   COOKIE TOGGLES
   ========================================================= */

.cookie-toggle {
    position: relative;

    display: block;

    flex: 0 0 48px;

    width: 48px;
    height: 26px;

    margin-top: 1px;

    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.cookie-toggle > span:first-of-type,
.cookie-toggle--locked > span {
    position: absolute;

    inset: 0;

    display: block;

    border: 1px solid var(--border);
    border-radius: 100px;

    background: transparent;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.cookie-toggle > span:first-of-type::after,
.cookie-toggle--locked > span::after {
    content: "";

    position: absolute;

    top: 4px;
    left: 4px;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: var(--grey);

    opacity: 0.55;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.cookie-toggle input:checked + span {
    border-color: var(--grey);

    background: var(--grey);
}

.cookie-toggle input:checked + span::after {
    background: var(--black);

    opacity: 1;

    transform: translateX(22px);
}

.cookie-toggle input:focus-visible + span {
    outline: 1px solid var(--grey);
    outline-offset: 4px;
}

.cookie-toggle--locked {
    cursor: default;
}

.cookie-toggle--locked > span {
    border-color: var(--grey);

    background: var(--grey);
}

.cookie-toggle--locked > span::after {
    background: var(--black);

    opacity: 1;

    transform: translateX(22px);
}


/* =========================================================
   COOKIE PREFERENCES ACTIONS
   ========================================================= */

.cookie-preferences__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    width: 100%;

    margin-top: auto;
    padding-top: 40px;
}


/* =========================================================
   FOOTER COOKIE SETTINGS LINK
   ========================================================= */

.cookie-settings-link {
    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;
    color: var(--grey);

    font: inherit;
    line-height: inherit;

    cursor: pointer;

    transition: opacity 0.25s ease;
}

.cookie-settings-link:hover {
    opacity: 0.7;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.screen-reader-text {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    border: 0 !important;

    white-space: nowrap !important;
}


/* =========================================================
   COOKIE CONSENT TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .cookie-banner__inner {
        display: block;
    }

    .cookie-banner__content {
        max-width: 720px;
    }

    .cookie-banner__actions {
        justify-content: flex-start;

        margin-top: 24px;
    }

}


/* =========================================================
   COOKIE CONSENT MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .cookie-banner {
        padding:
            24px
            var(--page-padding)
            26px;
    }

    .cookie-banner h2 {
        font-size: 32px;
    }

    .cookie-banner p {
        font-size: 12px;
        line-height: 1.6;
    }

    .cookie-banner__actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        width: 100%;

        margin-top: 22px;
    }

    .cookie-banner__actions
    .cookie-button {
        width: 100%;
    }

    .cookie-banner__actions
    .cookie-button--text {
        grid-column: 1 / -1;
    }

    .cookie-preferences__panel {
        width: 100%;

        padding:
            30px
            var(--page-padding)
            28px;

        border-left: 0;
    }

    .cookie-preferences__header {
        gap: 25px;

        padding-bottom: 26px;
    }

    .cookie-preferences__header h2 {
        font-size: 40px;
    }

    .cookie-preferences__intro {
        padding: 26px 0 32px;
    }

    .cookie-option {
        gap: 22px;

        padding: 23px 0;
    }

    .cookie-option__heading {
        display: block;
    }

    .cookie-option__status {
        display: block;

        margin-top: 7px;
    }

    .cookie-preferences__actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        padding-top: 30px;
    }

    .cookie-preferences__actions
    .cookie-button {
        width: 100%;
    }

    .cookie-preferences__actions
    .cookie-button--primary {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   COOKIE CONSENT SMALL MOBILE
   ========================================================= */

@media (max-width: 460px) {

    .cookie-banner__actions {
        display: flex;
        flex-direction: column;
    }

    .cookie-banner__actions
    .cookie-button {
        width: 100%;
    }

    .cookie-preferences__actions {
        display: flex;
        flex-direction: column;
    }

    .cookie-preferences__actions
    .cookie-button {
        width: 100%;
    }

}