/* ========================================
GLOBAL
======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: #111;
    line-height: 1.6;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

section {
    padding: 70px 8%;
}

section h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 40px;
}


/* ========================================
BUTTONS
======================================== */

.button {
    display: inline-block;

    padding: 15px 25px;

    border-radius: 4px;

    text-decoration: none;
    font-weight: 700;
}

.yellow {
    background: #F5C400;
    color: #071A2B;
}

.outline {
    border: 2px solid #F5C400;
    color: white;
}


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

header {
    position: relative;
    z-index: 1000;

    padding: 25px 30px;

    background: #071A2B;
    color: white;
}

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

    gap: 65px;
}

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand a {
    display: block;
}

.brand .logo {
    display: block;

    width: 270px;
    height: 90px;

    object-fit: contain;
}

.links {
    display: flex;
    align-items: center;

    gap: 42px;

    flex-shrink: 0;
}

.links a {
    color: white;

    text-decoration: none;

    font-size: 21px;
    font-weight: 600;

    white-space: nowrap;
}

.links a:hover {
    color: #F5C400;
}

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

    gap: 12px;

    flex-shrink: 0;
}

.call {
    display: inline-block;

    padding: 18px 34px;

    border-radius: 4px;

    background: #F5C400;
    color: #071A2B;

    text-decoration: none;

    font-size: 19px;
    font-weight: 700;

    white-space: nowrap;

    flex-shrink: 0;
}


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

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 2px solid #F5C400;
    border-radius: 4px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: #F5C400;

    border-radius: 2px;
}


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

.hero {
    position: relative;

    display: flex;
    align-items: stretch;

    min-height: 78vh;

    overflow: hidden;

    background: #071A2B;
    color: white;
}

.hero-text {
    position: relative;
    z-index: 2;

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

    padding: 90px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    margin-bottom: 24px;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.02;
}

.hero h3 {
    margin-bottom: 20px;

    color: #F5C400;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.35;
}

.hero p {
    max-width: 540px;

    margin-bottom: 32px;

    font-size: 18px;
}

.hero .button {
    margin-right: 12px;
    margin-bottom: 10px;
}

.hero-image {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 58%;

    z-index: 1;
}

.hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 220px;

    background:
        linear-gradient(
            to right,
            #071A2B,
            rgba(7, 26, 43, 0)
        );

    pointer-events: none;
}


/* ========================================
HERO PROJECT LINK
======================================== */

.hero-project-link {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    text-decoration: none;
}

.hero-project-link img {
    transition: transform 0.35s ease;
}

.hero-project-link:hover img {
    transform: scale(1.025);
}

.hero-project-link:focus-visible {
    outline: 3px solid #F5C400;
    outline-offset: -3px;
}


/* ========================================
HERO PROJECT CAPTION
======================================== */

.hero-project-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 18px 24px;

    background: rgba(7, 26, 43, 0.9);

    color: white;

    text-align: center;
}

.hero-project-caption span {
    display: block;

    margin-bottom: 4px;

    color: #F5C400;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hero-project-caption strong {
    display: block;

    margin-bottom: 4px;

    font-family: "Playfair Display", serif;

    font-size: 18px;
    line-height: 1.35;
}

.hero-project-caption small {
    display: block;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    font-weight: 600;
}


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

#services {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding: 80px 6%;
}

.service {
    overflow: hidden;

    background: #071A2B;
    color: white;

    border-radius: 6px;
}

.service-text {
    padding: 28px 30px 30px;
}

.service-text h2 {
    margin-bottom: 12px;

    color: white;

    font-size: 36px;
    line-height: 1.1;
}

.service-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 18px;
    line-height: 1.55;
}

.service-image {
    width: 100%;
    height: 750px;

    overflow: hidden;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ========================================
QUALITY & COVERAGE
======================================== */

.dark {
    background: #071A2B;
    color: white;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.quality h2,
.coverage h2 {
    margin-bottom: 30px;
}

.quality ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.quality li {
    position: relative;

    margin-bottom: 16px;
    padding-left: 24px;

    font-size: 26px;
}

.quality li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #F5C400;

    font-weight: 700;
}

.coverage h2 {
    color: #F5C400;
}

.coverage .locations {
    position: relative;

    display: block;

    width: 100%;
    height: 500px;

    margin-top: 20px;
}

.coverage .locations .loc {
    position: absolute;

    display: block;

    margin: 0;
    padding: 0;

    font-weight: 600;
    line-height: 1;

    white-space: nowrap;
}


/* ========================================
DESKTOP LOCATION PATTERN
======================================== */

.coverage .south-ribble {
    left: 35%;
    top: 42%;

    font-size: 34px;

    color: #F5C400;
}

.coverage .preston {
    left: 52%;
    top: 27%;

    font-size: 29px;

    color: white;
}

.coverage .blackburn {
    left: 57%;
    top: 4%;

    font-size: 32px;

    color: white;
}

.coverage .darwen {
    left: 73%;
    top: 22%;

    font-size: 24px;

    color: #F5C400;
}

.coverage .chorley {
    left: 5%;
    top: 56%;

    font-size: 32px;

    color: #F5C400;
}

.coverage .leyland {
    left: 28%;
    top: 10%;

    font-size: 18px;

    color: white;
}

.coverage .penwortham {
    left: 68%;
    top: 51%;

    font-size: 22px;

    color: white;
}

.coverage .bamber {
    left: 7%;
    top: 31%;

    font-size: 18px;

    color: white;
}

.coverage .walton {
    left: 23%;
    top: 69%;

    font-size: 19px;

    color: #F5C400;
}

.coverage .farington {
    left: 76%;
    top: 70%;

    font-size: 17px;

    color: #F5C400;
}

.coverage .lostock {
    left: 3%;
    top: 82%;

    font-size: 20px;

    color: white;
}

.coverage .longton {
    left: 53%;
    top: 83%;

    font-size: 17px;

    color: white;
}

.coverage .higher-walton {
    left: 78%;
    top: 85%;

    font-size: 18px;

    color: #F5C400;
}


/* ========================================
FREE QUOTATION
======================================== */

.quote-section {
    padding: 90px 6%;

    background: #071A2B;
    color: white;
}

.quote-container {
    max-width: 1150px;

    margin: 0 auto;
}

.quote-heading {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}

.quote-heading h2 {
    margin-bottom: 20px;

    color: #F5C400;

    font-size: clamp(34px, 5vw, 48px);
}

.quote-heading p {
    font-size: 18px;
    line-height: 1.7;
}

.quote-step-section {
    margin-bottom: 60px;
}

.step-heading {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}

.step-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #F5C400;
    color: #071A2B;

    font-size: 22px;
    font-weight: 700;
}

.step-heading h3 {
    margin: 0 0 5px;

    font-size: 27px;
}

.step-heading p {
    margin: 0;

    opacity: 0.75;
}


/* ========================================
PROPERTY CARDS
======================================== */

.property-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.hidden-choice {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.property-card {
    padding: 27px 15px;

    border: 3px solid transparent;
    border-radius: 6px;

    background: white;
    color: #071A2B;

    text-align: center;

    cursor: pointer;

    transition: 0.2s ease;
}

.property-card:hover {
    transform: translateY(-3px);
}

.property-card strong {
    display: block;

    margin-bottom: 6px;

    font-size: 18px;
}

.property-card span {
    display: block;

    color: #65717C;

    font-size: 15px;
    font-weight: 600;
}

.hidden-choice:checked + .property-card {
    border-color: #F5C400;

    background: #fffcec;
}

.hidden-choice:focus-visible + .property-card {
    outline: 3px solid #F5C400;
    outline-offset: 3px;
}

.price-disclaimer {
    margin-top: 18px;

    opacity: 0.7;

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


/* ========================================
STANDARD REWIRE
======================================== */

.standard-package {
    margin: 55px 0 65px;
    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.07);
}

.standard-package h3 {
    margin-bottom: 30px;

    color: #F5C400;

    font-size: 27px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 28px 55px;
}

.included-item {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.included-item strong {
    color: #F5C400;

    font-size: 17px;
}

.included-item span {
    color: white;

    opacity: 0.85;

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

.standard-bottom-text {
    margin: 35px 0 0;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 16px;
}


/* ========================================
OCCUPANCY
======================================== */

.occupancy-options {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.occupancy-card {
    min-height: 115px;

    padding: 23px;

    border: 3px solid transparent;
    border-radius: 6px;

    background: white;
    color: #071A2B;

    cursor: pointer;

    transition: 0.2s ease;
}

.occupancy-card:hover {
    transform: translateY(-3px);
}

.occupancy-card strong {
    display: block;

    margin-bottom: 5px;

    font-size: 19px;
}

.occupancy-card span {
    display: block;

    color: #65717C;

    font-size: 14px;
}

.hidden-choice:checked + .occupancy-card {
    border-color: #F5C400;

    background: #fffcec;
}


/* ========================================
PROJECT OPTIONS
======================================== */

.quote-category {
    margin-bottom: 35px;
}

.quote-category h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    color: #F5C400;

    font-size: 21px;
}

.quote-options {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px;
}

.quote-option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 68px;

    padding: 15px 20px;

    border-radius: 5px;

    background: white;
    color: #071A2B;

    cursor: pointer;
}

.quote-option:hover {
    background: #fffcec;
}

.quote-option span {
    font-size: 17px;
    font-weight: 600;
}

.quote-option input {
    width: 21px;
    height: 21px;

    padding: 0;

    flex-shrink: 0;

    accent-color: #F5C400;

    cursor: pointer;
}


/* ========================================
PROJECT DETAILS
======================================== */

.project-details {
    margin-top: 35px;
    padding: 30px;

    border-radius: 6px;

    background: white;
    color: #071A2B;
}

.project-details label {
    display: block;

    margin-bottom: 15px;
}

.project-details strong {
    display: block;

    margin-bottom: 5px;

    font-size: 20px;
}

.project-details label span {
    display: block;

    color: #65717C;

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

.project-details textarea {
    width: 100%;
    min-height: 170px;

    padding: 15px;

    border: 1px solid #CBD2D8;
    border-radius: 4px;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;

    resize: vertical;
}

.project-details textarea:focus {
    outline: 2px solid #F5C400;

    border-color: #F5C400;
}


/* ========================================
CONTACT DETAILS
======================================== */

.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-field {
    padding: 18px;

    border-radius: 5px;

    background: white;
    color: #071A2B;
}

.contact-field label {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;
    font-weight: 700;
}

.contact-field input {
    width: 100%;

    padding: 13px;

    border: 1px solid #CBD2D8;
    border-radius: 4px;

    font-family: inherit;
    font-size: 16px;
}

.contact-field input:focus {
    outline: 2px solid #F5C400;

    border-color: #F5C400;
}


/* ========================================
PREFERRED CONTACT METHOD
======================================== */

.contact-preference {
    margin-top: 30px;
}

.contact-preference h4 {
    margin-bottom: 15px;

    color: #F5C400;

    font-size: 19px;
}

.contact-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 65px;

    padding: 15px;

    border: 3px solid transparent;
    border-radius: 5px;

    background: white;
    color: #071A2B;

    font-size: 17px;
    font-weight: 700;

    text-align: center;

    cursor: pointer;

    transition: 0.2s ease;
}

.contact-method-card:hover {
    transform: translateY(-2px);

    background: #fffcec;
}

.hidden-choice:checked + .contact-method-card {
    border-color: #F5C400;

    background: #fffcec;
}

.hidden-choice:focus-visible + .contact-method-card {
    outline: 3px solid #F5C400;
    outline-offset: 3px;
}


/* ========================================
SUBMIT
======================================== */

.quote-submit-area {
    margin-top: 40px;
    padding: 42px 30px;

    border-top: 6px solid #F5C400;
    border-radius: 5px;

    background: white;
    color: #071A2B;

    text-align: center;
}

.quote-submit {
    padding: 16px 30px;

    border: none;
    border-radius: 4px;

    background: #F5C400;
    color: #071A2B;

    font-family: inherit;
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
}

.quote-submit:hover {
    background: #FFD21A;
}

.quote-submit-area p {
    max-width: 700px;

    margin: 18px auto 0;

    color: #68727D;

    font-size: 14px;
}


/* ========================================
INNER PAGE HERO
ABOUT / PROJECTS
======================================== */

.inner-page-hero {
    padding: 90px 8% 100px;

    background: #071A2B;
    color: white;

    text-align: center;
}

.inner-page-hero div {
    max-width: 850px;

    margin: 0 auto;
}

.inner-page-hero h1 {
    margin-bottom: 20px;

    color: #F5C400;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.1;
}

.inner-page-hero p {
    max-width: 700px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.85);

    font-size: 20px;
    line-height: 1.7;
}


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

.about-section {
    padding: 90px 7%;

    background: white;
    color: #071A2B;
}

.about-page {
    padding-top: 80px;
}

.about-intro {
    max-width: 1000px;

    margin: 0 auto 60px;

    text-align: center;
}

.about-intro p {
    font-size: 21px;
    line-height: 1.7;
}

.about-stats {
    max-width: 1100px;

    margin: 0 auto 70px;

    display: flex;
    justify-content: center;

    gap: 30px;
}

.about-stat {
    flex: 1;

    max-width: 300px;

    padding: 30px 20px;

    border-top: 4px solid #F5C400;

    background: #071A2B;
    color: white;

    text-align: center;
}

.stat-number {
    display: block;

    margin-bottom: 12px;

    color: #F5C400;

    font-size: 46px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.about-columns {
    max-width: 1200px;

    margin: 0 auto 70px;

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

    gap: 100px;
}

.about-columns > div {
    padding: 0 20px;
}

.about-columns h3 {
    margin-bottom: 18px;

    color: #071A2B;

    font-size: 25px;
}

.about-columns p {
    font-size: 18px;
    line-height: 1.75;
}

.about-principle {
    max-width: 950px;

    margin: 20px auto 55px;
    padding: 45px;

    border-top: 5px solid #F5C400;
    border-radius: 6px;

    background: #071A2B;
    color: white;

    text-align: center;
}

.about-principle h2 {
    margin-bottom: 20px;

    color: #F5C400;

    font-size: 32px;
}

.about-principle p {
    font-size: 19px;
    line-height: 1.75;
}

.about-bottom {
    text-align: center;
}


/* ========================================
RECENT PROJECTS PAGE
======================================== */

.projects-page {
    padding: 70px 24px;

    background: #f5f5f5;
}


/* ========================================
PROJECT SHOWCASE
======================================== */

.project-showcase {
    max-width: 1100px;

    margin: 0 auto 70px;

    background: white;
}


/* ========================================
PROJECT INTRODUCTION
======================================== */

.project-introduction {
    padding: 45px 50px 35px;
}

.project-type {
    display: inline-block;

    margin-bottom: 10px;

    color: #071A2B;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.project-title-area h2 {
    margin-bottom: 6px;

    color: #071A2B;

    font-family: "Playfair Display", serif;

    font-size: 38px;
    line-height: 1.2;
}

.project-location {
    margin-bottom: 30px;

    color: #666;

    font-weight: 600;
}


/* ========================================
PROJECT DESCRIPTION
======================================== */

.project-description {
    max-width: 850px;

    color: #333;

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

.project-description p {
    margin-bottom: 14px;
}


/* ========================================
PROJECT INFORMATION STRIP
======================================== */

.project-details-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 35px;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.project-details-strip div {
    padding: 20px 18px;

    border-right: 1px solid #ddd;
}

.project-details-strip div:last-child {
    border-right: none;
}

.project-details-strip span {
    display: block;

    margin-bottom: 4px;

    color: #777;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details-strip strong {
    color: #071A2B;

    font-size: 15px;
}


/* ========================================
PROJECT CAROUSEL
======================================== */

.project-carousel {
    padding-bottom: 40px;
}

.project-photo-area {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #071A2B;
}

.project-slide {
    display: none;

    margin: 0;
}

.project-slide.active {
    display: block;
}

.project-slide img {
    display: block;

    width: 100%;
    height: 680px;

    object-fit: contain;

    background: #071A2B;
}


/* ========================================
CAROUSEL ARROWS
======================================== */

.project-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

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

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: rgba(7, 26, 43, 0.86);
    color: #F5C400;

    font-size: 28px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.project-arrow:hover {
    transform:
        translateY(-50%)
        scale(1.06);

    background: #071A2B;
}

.project-arrow-left {
    left: 22px;
}

.project-arrow-right {
    right: 22px;
}


/* ========================================
PHOTO COUNTER
======================================== */

.project-photo-counter {
    position: absolute;

    right: 20px;
    bottom: 18px;

    padding: 6px 12px;

    border-radius: 20px;

    background: rgba(7, 26, 43, 0.88);
    color: white;

    font-size: 14px;
    font-weight: 700;
}


/* ========================================
CAROUSEL DOTS
======================================== */

.project-dots {
    display: flex;
    justify-content: center;

    gap: 10px;

    padding: 22px 20px 10px;
}

.project-dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 2px solid #071A2B;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.project-dot.active {
    border-color: #F5C400;

    background: #F5C400;
}


/* ========================================
PHOTO CAPTION
======================================== */

.project-photo-caption {
    max-width: 760px;

    margin: 8px auto 0;
    padding: 0 30px;

    text-align: center;
}

.project-photo-caption strong {
    display: block;

    margin-bottom: 7px;

    color: #071A2B;

    font-family: "Playfair Display", serif;

    font-size: 22px;
}

.project-photo-caption p {
    color: #555;

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


/* ========================================
PROJECTS CTA
======================================== */

.projects-cta {
    max-width: 900px;

    margin: 0 auto;
    padding: 50px 30px;

    border-top: 5px solid #F5C400;
    border-radius: 6px;

    background: #071A2B;
    color: white;

    text-align: center;
}

.projects-cta h2 {
    margin-bottom: 12px;

    color: #F5C400;

    font-size: 34px;
}

.projects-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: white;

    font-size: 17px;
}


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

footer {
    padding: 20px;

    background: #071A2B;
    color: white;

    text-align: center;
}


/* ========================================
LARGE TABLET / SMALL LAPTOP
======================================== */

@media (max-width: 1050px) {

    nav {
        gap: 30px;
    }

    .brand .logo {
        width: 230px;
    }

    .links {
        gap: 25px;
    }

    .links a {
        font-size: 18px;
    }

    .call {
        padding: 15px 24px;

        font-size: 17px;
    }

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

}


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

@media (max-width: 850px) {

    .property-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .quote-options {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 800px) {

    header {
        position: relative;
        z-index: 1000;

        padding: 15px 20px;
    }

    nav {
        justify-content: space-between;

        gap: 15px;
    }

    .brand .logo {
        width: 190px;
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 10px;
    }

    .call {
        padding: 12px 16px;

        font-size: 15px;
    }


    /* MOBILE DROP-DOWN MENU */

    .links {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        padding: 12px 24px 22px;

        border-top:
            1px solid rgba(255, 255, 255, 0.15);

        background: #071A2B;

        box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.18);

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .links.open {
        display: flex;
    }

    .links a {
        width: 100%;

        padding: 14px 4px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);

        font-size: 18px;
    }

    .links a:last-child {
        border-bottom: none;
    }

}


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

@media (max-width: 800px) {

    .hero {
        position: relative;

        display: flex;

        min-height: 650px;

        overflow: hidden;

        background: #071A2B;
    }


    /* IMAGE FILLS ENTIRE HERO */

    .hero-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 0;

        opacity: 1;
    }

    .hero-project-link {
        position: relative;

        display: block;

        width: 100%;
        height: 100%;

        opacity: 1;
    }

    .hero-image img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        opacity: 1;
    }


    /* DARKEN THE ENTIRE PHOTO EVENLY */

    .hero-image::after {
        content: "";

        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 1;

        background:
            linear-gradient(
                rgba(7, 26, 43, 0.48),
                rgba(7, 26, 43, 0.52)
            );
.hero-text h1,
.hero-text h3,
.hero-text p {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}
        pointer-events: none;
    }


    /* MAIN HERO TEXT OVER IMAGE */

    .hero-text {
        position: relative;

        z-index: 2;

        width: 100%;
        max-width: none;

        padding:
            70px
            24px
            150px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

    .hero h1 {
        color: white;

        font-size: 45px;
    }

    .hero h3 {
        color: #F5C400;
    }

    .hero-text p {
        max-width: 520px;

        margin-left: auto;
        margin-right: auto;

        color: white;
    }

    .hero-text > div {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        gap: 12px;
    }


    /* SOLID PROJECT CAPTION */

    .hero-project-caption {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 4;

        padding: 14px 16px;

        background: #071A2B;

        color: white;

        text-align: center;

        opacity: 1;
    }

    .hero-project-caption span {
        color: #F5C400;

        opacity: 1;
    }

    .hero-project-caption strong {
        color: white;

        opacity: 1;
    }

    .hero-project-caption small {
        color: white;

        opacity: 1;
    }

}


/* ========================================
MOBILE QUALITY & COVERAGE
======================================== */

@media (max-width: 800px) {

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


    /* QUALITY LIST */

    .quality li {
        position: relative;

        margin-bottom: 16px;
        padding-left: 24px;

        font-size: 26px;
        font-weight: 400;
        line-height: 1.4;
    }


    /* PROUDLY COVERING */

    .coverage {
        overflow: visible;
    }

    .coverage .locations {
        position: static;

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

        gap: 0;

        width: 100%;
        height: auto;
        min-height: 0;

        margin-top: 20px;
    }


    /* AREA NAMES MATCH QUALITY LIST */

    .coverage .locations .loc {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        display: block;

        width: 100%;

        margin: 0 0 16px;
        padding-left: 24px;

        transform: none;

        color: white !important;

        font-size: 26px !important;
        font-weight: 400 !important;
        line-height: 1.4;

        text-align: left;

        white-space: normal;
    }


    /* YELLOW TICK BEFORE EACH AREA */

    .coverage .locations .loc::before {
        content: "✓";

        position: absolute;

        left: 0;

        color: #F5C400;

        font-weight: 700;
    }

}


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

@media (max-width: 800px) {

    .projects-page {
        padding: 45px 18px;
    }

    .project-introduction {
        padding: 35px 28px 28px;
    }

    .project-title-area h2 {
        font-size: 31px;
    }

    .project-details-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-details-strip div:nth-child(2) {
        border-right: none;
    }

    .project-details-strip div:nth-child(1),
    .project-details-strip div:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }

    .project-slide img {
        height: 520px;
    }

}


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

@media (max-width: 768px) {

    #services {
        grid-template-columns: 1fr;

        padding: 50px 20px;
    }

    .service-text {
        padding: 24px 25px;
    }

    .service-text h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .service-text p {
        font-size: 17px;
    }

    .service-image {
        height: 250px;
    }

}


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

@media (max-width: 700px) {

    .inner-page-hero {
        padding: 65px 7% 75px;
    }

    .inner-page-hero p {
        font-size: 17px;
    }

    .about-section {
        padding: 65px 6%;
    }

    .about-intro p {
        font-size: 17px;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;

        gap: 15px;
    }

    .about-stat {
        width: 100%;
        max-width: none;
    }

    .about-columns {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-columns h3 {
        font-size: 22px;
    }

    .about-principle {
        padding: 35px 25px;
    }

    .about-principle h2 {
        font-size: 28px;
    }

    .about-principle p {
        font-size: 17px;
    }

}


/* ========================================
QUOTATION MOBILE
======================================== */

@media (max-width: 600px) {

    .quote-section {
        padding: 65px 5%;
    }

    .quote-heading {
        margin-bottom: 45px;
    }

    .quote-heading h2 {
        font-size: 34px;
    }

    .step-heading {
        align-items: flex-start;
    }

    .step-heading > span {
        width: 42px;
        height: 42px;

        font-size: 19px;
    }

    .step-heading h3 {
        font-size: 23px;
        line-height: 1.3;
    }

    .property-options {
        grid-template-columns: 1fr;
    }

    .occupancy-options {
        grid-template-columns: 1fr;
    }

    .standard-package {
        padding: 28px 22px;
    }

    .contact-fields {
        grid-template-columns: 1fr;
    }

    .contact-method-options {
        grid-template-columns: 1fr;
    }

    .quote-option {
        min-height: 62px;

        padding: 13px 15px;
    }

    .quote-option span {
        font-size: 15px;
    }

    .project-details {
        padding: 22px;
    }

    .quote-submit-area {
        padding: 35px 20px;
    }

    .hero-project-caption strong {
        font-size: 16px;
    }

}


/* ========================================
PROJECTS MOBILE
======================================== */

@media (max-width: 550px) {

    .projects-page {
        padding:
            30px
            12px
            45px;
    }

    .project-showcase {
        margin-bottom: 50px;
    }

    .project-introduction {
        padding:
            28px
            20px
            24px;
    }

    .project-title-area h2 {
        font-size: 27px;
    }

    .project-description {
        font-size: 16px;
    }

    .project-details-strip {
        grid-template-columns: 1fr;
    }

    .project-details-strip div {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .project-details-strip div:last-child {
        border-bottom: none;
    }

    .project-slide img {
        height: 410px;
    }

    .project-arrow {
        width: 42px;
        height: 42px;

        font-size: 22px;
    }

    .project-arrow-left {
        left: 10px;
    }

    .project-arrow-right {
        right: 10px;
    }

    .project-photo-counter {
        right: 10px;
        bottom: 10px;
    }

    .project-photo-caption {
        padding: 0 18px;
    }

    .project-photo-caption strong {
        font-size: 20px;
    }

    .projects-cta {
        padding: 40px 20px;
    }

    .projects-cta h2 {
        font-size: 28px;
    }

}


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

@media (max-width: 420px) {

    header {
        padding: 12px 15px;
    }

    .brand .logo {
        width: 135px;
        height: 60px;
    }

    .nav-actions {
        gap: 7px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;

        padding: 8px;
    }

    .call {
        padding: 10px 11px;

        font-size: 13px;
    }

    .links {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 40px;
    }


    /* KEEP QUALITY AND AREAS MATCHED */

    .quality li {
        font-size: 20px;
    }

    .coverage .locations .loc {
        font-size: 20px !important;
    }

}