:root {
    --navy: #1e2a39;
    --navy-deep: #111d2a;
    --navy-soft: #2b3a4c;
    --green: #4f6a4e;
    --green-dark: #3e563e;
    --green-light: #e7eee6;
    --charcoal: #4b4f56;
    --grey: #d9dadb;
    --grey-light: #f4f5f5;
    --white: #ffffff;
    --ink: #172232;
    --muted: #68717d;
    --border: #dfe3e5;
    --shadow: 0 24px 60px rgba(18, 29, 42, 0.12);
    --shadow-small: 0 12px 30px rgba(18, 29, 42, 0.1);
    --radius: 18px;
    --radius-small: 11px;
    --container: 1220px;
    --header-height: 96px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.dialog-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.13;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 820px;
    margin-bottom: 25px;
    font-size: clamp(3rem, 5.8vw, 5.75rem);
    font-weight: 800;
}

h1 em {
    color: #b8cbb5;
    font-style: italic;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4vw, 3.9rem);
    font-weight: 800;
}

h3 {
    font-size: 1.4rem;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy);
    border-radius: 5px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #91ae8e;
    outline-offset: 3px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: #cfddcc;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 3px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--green);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    box-shadow: 0 12px 22px rgba(14, 30, 25, 0.18);
    transform: translateY(-2px);
}

.button--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.78rem;
}

.button--light {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.button--light:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.32);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.utility-bar {
    position: relative;
    z-index: 102;
    color: rgba(255, 255, 255, 0.8);
    background: var(--navy-deep);
    font-size: 0.72rem;
    font-weight: 600;
}

.utility-bar__inner {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-bar p {
    margin: 0;
}

.utility-bar i {
    margin-right: 7px;
    color: #b8cbb5;
}

.utility-bar__actions {
    display: flex;
    align-self: stretch;
    align-items: center;
}

.utility-bar__actions a {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    transition: color 180ms ease, background-color 180ms ease;
}

.utility-bar__actions a:last-child {
    padding-right: 0;
}

.utility-bar__actions a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(28, 42, 57, 0.09);
    backdrop-filter: blur(15px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(18, 29, 42, 0.08);
}

.site-header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    display: flex;
    width: 215px;
    height: 90px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
}

.primary-nav > a {
    position: relative;
    padding: 16px 0;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
}

.primary-nav > a::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

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

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 790px;
    color: var(--white);
    background: var(--navy);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 0;
    right: -12%;
    width: 56%;
    height: 100%;
    background: rgba(255, 255, 255, 0.027);
    content: "";
    clip-path: polygon(25% 0, 100% 0, 80% 100%, 0 100%);
}

.hero__texture {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(125deg, transparent 47%, rgba(255, 255, 255, 0.12) 48%, transparent 49%),
        radial-gradient(circle at 20% 20%, rgba(126, 158, 123, 0.4), transparent 25%);
    background-size: 170px 170px, 100% 100%;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    align-items: center;
    gap: clamp(40px, 6vw, 86px);
    padding-top: 76px;
    padding-bottom: 112px;
}

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

.hero__lead {
    max-width: 680px;
    margin-bottom: 33px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 25px;
    margin: 30px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 650;
    list-style: none;
}

.hero__checks i {
    margin-right: 7px;
    color: #b8cbb5;
}

.hero__visual {
    position: relative;
    min-height: 510px;
}

.hero__image-wrap {
    position: absolute;
    inset: 18px 0 24px 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 220px 22px 22px 22px;
    box-shadow: 0 35px 75px rgba(5, 13, 21, 0.35);
}

.hero__image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14, 27, 40, 0.5));
    content: "";
}

.hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
}

.hero__service-card {
    position: absolute;
    right: -30px;
    bottom: 0;
    z-index: 2;
    display: flex;
    min-width: 285px;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    color: var(--ink);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero__service-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.hero__service-card strong,
.hero__service-card span {
    display: block;
}

.hero__service-card strong {
    margin-bottom: 2px;
    font-size: 0.84rem;
}

.hero__service-card > div > span {
    color: var(--muted);
    font-size: 0.68rem;
}

.hero__coverage {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: grid;
    width: 144px;
    height: 144px;
    place-content: center;
    padding: 18px;
    color: var(--white);
    background: var(--green);
    border: 7px solid var(--navy);
    border-radius: 50%;
    text-align: center;
    transform: rotate(-7deg);
}

.hero__coverage span {
    margin-bottom: 4px;
    color: #dbe7da;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__coverage strong {
    font-size: 0.73rem;
    line-height: 1.35;
}

.hero__quick-links {
    position: relative;
    z-index: 5;
    display: grid;
    margin-top: -68px;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quick-link {
    display: grid;
    min-height: 136px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 28px 30px;
    background: var(--white);
    border: 0;
    border-right: 1px solid var(--border);
    cursor: pointer;
    text-align: left;
    transition: color 180ms ease, background-color 180ms ease;
}

.quick-link:last-child {
    border-right: 0;
}

.quick-link:hover {
    color: var(--white);
    background: var(--green);
}

.quick-link__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--green);
    background: var(--green-light);
    border-radius: 50%;
    font-size: 1.12rem;
}

.quick-link:hover .quick-link__icon {
    color: var(--navy);
    background: var(--white);
}

.quick-link small,
.quick-link strong {
    display: block;
}

.quick-link small {
    margin-bottom: 2px;
    color: var(--green);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.quick-link:hover small {
    color: rgba(255, 255, 255, 0.7);
}

.quick-link strong {
    font-size: 1rem;
    line-height: 1.35;
}

.quick-link > span:nth-child(2) {
    color: var(--muted);
    font-size: 0.69rem;
}

.quick-link:hover > span:nth-child(2) {
    color: rgba(255, 255, 255, 0.75);
}

.quick-link:hover strong {
    color: var(--white);
}

.quick-link > i {
    font-size: 0.78rem;
}

.services {
    padding-top: 165px;
    background: var(--grey-light);
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 720px;
}

.section-heading > p {
    max-width: 690px;
    color: var(--muted);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.6fr);
    align-items: end;
    gap: 70px;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading--split > p {
    margin-bottom: 7px;
}

.section-heading--centre {
    max-width: 830px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--centre h2,
.section-heading--centre > p {
    margin-right: auto;
    margin-left: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(18, 29, 42, 0.055);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
    box-shadow: var(--shadow-small);
    transform: translateY(-6px);
}

.service-card--featured {
    border-color: #bdcdbb;
}

.service-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card__image::after {
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, rgba(13, 26, 38, 0.5));
    content: "";
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.04);
}

.service-card__number {
    position: absolute;
    right: 18px;
    bottom: 13px;
    z-index: 2;
    color: var(--white);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-card__body {
    padding: 30px;
}

.service-card__body > p {
    color: var(--muted);
    font-size: 0.88rem;
}

.service-card__title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.service-card__title > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
}

.service-card__title p {
    margin-bottom: 2px;
    color: var(--green);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card__title h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.check-list {
    display: grid;
    gap: 9px;
    margin: 24px 0 26px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.74rem;
    font-weight: 600;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 21px;
}

.check-list li::before {
    position: absolute;
    top: 0.32em;
    left: 0;
    width: 11px;
    height: 6px;
    border-bottom: 2px solid var(--green);
    border-left: 2px solid var(--green);
    content: "";
    transform: rotate(-45deg);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
}

.text-link i {
    color: var(--green);
    transition: transform 180ms ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.trust-strip {
    color: var(--white);
    background: var(--green);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trust-strip__grid > div {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 13px;
    padding: 23px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip__grid > div:first-child {
    padding-left: 0;
}

.trust-strip__grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-strip i {
    font-size: 1.3rem;
}

.trust-strip span,
.trust-strip strong {
    display: block;
}

.trust-strip strong {
    margin-bottom: 1px;
    font-size: 0.73rem;
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.61rem;
}

.craft {
    overflow: hidden;
}

.craft__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.craft__images {
    position: relative;
    min-height: 630px;
}

.craft__images::before {
    position: absolute;
    top: 26px;
    left: -90px;
    width: 280px;
    height: 280px;
    background: var(--green-light);
    border-radius: 50%;
    content: "";
}

.craft__image-main,
.craft__image-small {
    position: absolute;
    overflow: hidden;
    background: var(--grey);
    box-shadow: var(--shadow);
}

.craft__image-main {
    inset: 0 80px 70px 0;
    border-radius: 160px 16px 16px 16px;
}

.craft__image-small {
    right: 0;
    bottom: 0;
    width: 255px;
    height: 235px;
    border: 8px solid var(--white);
    border-radius: 14px;
}

.craft__image-main img,
.craft__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft__badge {
    position: absolute;
    top: 25px;
    right: 5px;
    display: grid;
    width: 132px;
    height: 132px;
    place-content: center;
    color: var(--white);
    background: var(--navy);
    border: 7px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-small);
    text-align: center;
}

.craft__badge i {
    margin-bottom: 8px;
    color: #b8cbb5;
}

.craft__badge strong {
    font-size: 0.69rem;
    line-height: 1.4;
}

.craft__lead {
    color: var(--muted);
    font-size: 1.02rem;
}

.feature-list {
    display: grid;
    gap: 6px;
    margin: 33px 0;
}

.feature-list > div {
    display: flex;
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.feature-list > div:last-child {
    border-bottom: 0;
}

.feature-list > div > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: var(--green);
    background: var(--green-light);
    border-radius: 50%;
}

.feature-list h3 {
    margin-bottom: 5px;
    font-size: 0.93rem;
}

.feature-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.craft__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-link > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 0.82rem;
}

.phone-link span,
.phone-link strong {
    display: block;
}

.phone-link span {
    color: var(--muted);
    font-size: 0.62rem;
}

.phone-link strong {
    color: var(--navy);
    font-size: 0.87rem;
}

.detail-work {
    background: var(--grey-light);
}

.work-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.work-card {
    position: relative;
    height: 390px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.work-card::after {
    position: absolute;
    inset: 38% 0 0;
    background: linear-gradient(transparent, rgba(12, 23, 35, 0.82));
    content: "";
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.work-card:hover img {
    transform: scale(1.035);
}

.work-card figcaption {
    position: absolute;
    right: 24px;
    bottom: 23px;
    left: 24px;
    z-index: 2;
    color: var(--white);
}

.work-card figcaption span,
.work-card figcaption strong {
    display: block;
}

.work-card figcaption span {
    margin-bottom: 5px;
    color: #b8cbb5;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.work-card figcaption strong {
    font-size: 0.92rem;
}

.before-after {
    display: grid;
    margin-top: 18px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.before-after__copy {
    align-self: center;
    padding: 38px;
}

.before-after__copy h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.before-after__copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.82rem;
}

.before-after figure {
    position: relative;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
}

.before-after figure span {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 11px;
    color: var(--white);
    background: var(--navy);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.before-after figure:last-child span {
    background: var(--green);
}

.before-after figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process {
    position: relative;
    color: var(--white);
    background: var(--navy);
    overflow: hidden;
}

.process::before {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 28px 28px;
    content: "";
}

.process .container {
    position: relative;
}

.process .section-heading > p {
    color: rgba(255, 255, 255, 0.68);
}

.process__steps {
    display: grid;
    margin: 65px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.process__steps li {
    position: relative;
    min-height: 280px;
    padding: 47px 45px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process__steps li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 14px 0 0 14px;
}

.process__steps li:last-child {
    border-radius: 0 14px 14px 0;
}

.process__number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: rgba(255, 255, 255, 0.13);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.process__steps li > i {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--navy);
    background: #c9d9c6;
    border-radius: 50%;
    font-size: 1.15rem;
}

.process__steps h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.process__steps p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}

.process__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.process__cta > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
}

.areas {
    background:
        linear-gradient(90deg, rgba(244, 245, 245, 0.96), rgba(244, 245, 245, 0.96)),
        radial-gradient(circle at 10px 10px, var(--green) 1px, transparent 0);
    background-size: auto, 35px 35px;
}

.areas__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.7fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.areas__content > p:not(.eyebrow) {
    color: var(--muted);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 34px;
}

.area-tags span {
    padding: 8px 13px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid #d9e1d7;
    border-radius: 30px;
    box-shadow: 0 5px 14px rgba(18, 29, 42, 0.04);
    font-size: 0.69rem;
    font-weight: 700;
}

.areas__visual {
    position: relative;
}

.route-card {
    position: relative;
    min-height: 580px;
    padding: 54px;
    color: var(--white);
    background: var(--navy);
    border: 12px solid var(--white);
    border-radius: 180px 20px 20px 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.route-card::before {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(110deg, transparent 40%, #fff 41%, transparent 42%),
        linear-gradient(35deg, transparent 50%, #fff 51%, transparent 52%);
    background-size: 190px 190px, 240px 240px;
    content: "";
}

.route-card__line {
    position: absolute;
    top: 98px;
    bottom: 80px;
    left: 88px;
    width: 3px;
    background: repeating-linear-gradient(to bottom, #b8cbb5 0 9px, transparent 9px 17px);
}

.route-card__start,
.route-card__end {
    position: absolute;
    left: 68px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--navy);
    background: #c9d9c6;
    border: 5px solid var(--navy);
    border-radius: 50%;
}

.route-card__start {
    top: 73px;
}

.route-card__end {
    bottom: 55px;
}

.route-card__label {
    position: absolute;
    left: 135px;
    z-index: 2;
}

.route-card__label--one {
    top: 66px;
}

.route-card__label--two {
    top: 245px;
}

.route-card__label--three {
    bottom: 50px;
}

.route-card__label small,
.route-card__label strong {
    display: block;
}

.route-card__label small {
    margin-bottom: 5px;
    color: #b8cbb5;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.route-card__label strong {
    font-size: 0.9rem;
    line-height: 1.5;
}

.route-card__van {
    position: absolute;
    top: 185px;
    left: 69px;
    z-index: 3;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 7px var(--navy);
    font-size: 1.2rem;
    padding: 9px;
}

.lifestyle-cta {
    position: relative;
    display: grid;
    min-height: 590px;
    align-items: center;
    overflow: hidden;
}

.lifestyle-cta > img,
.lifestyle-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lifestyle-cta > img {
    object-fit: cover;
    object-position: center 55%;
}

.lifestyle-cta__overlay {
    background: linear-gradient(90deg, rgba(14, 26, 39, 0.93) 0%, rgba(14, 26, 39, 0.78) 43%, rgba(14, 26, 39, 0.25) 72%, rgba(14, 26, 39, 0.05) 100%);
}

.lifestyle-cta__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
    color: var(--white);
}

.lifestyle-cta__content h2,
.lifestyle-cta__content > p {
    max-width: 670px;
}

.lifestyle-cta__content > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.73);
}

.lifestyle-cta__content > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reviews {
    background: var(--white);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-grid blockquote {
    position: relative;
    margin-bottom: 0;
    padding: 34px;
    background: var(--grey-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-grid blockquote::before {
    position: absolute;
    top: 26px;
    right: 28px;
    color: #dbe4d9;
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.review-label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 5px 8px;
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 4px;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 17px;
    color: var(--green);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.review-grid blockquote > p {
    position: relative;
    z-index: 2;
    min-height: 112px;
    color: var(--charcoal);
    font-size: 0.85rem;
    line-height: 1.8;
}

.review-grid footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-grid footer > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
}

.review-grid footer strong,
.review-grid footer small {
    display: block;
}

.review-grid footer strong {
    margin-bottom: 2px;
    font-size: 0.72rem;
}

.review-grid footer small {
    color: var(--muted);
    font-size: 0.6rem;
}

.faqs {
    background: var(--grey-light);
}

.faqs__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(50px, 9vw, 120px);
}

.faqs__intro {
    position: sticky;
    top: 135px;
}

.faqs__intro > p:not(.eyebrow) {
    margin-bottom: 27px;
    color: var(--muted);
}

.accordion {
    border-top: 1px solid #ced3d6;
}

.accordion__item {
    border-bottom: 1px solid #ced3d6;
}

.accordion__item button {
    display: flex;
    width: 100%;
    min-height: 83px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: left;
}

.accordion__item button i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 0.68rem;
    transition: transform 180ms ease, background-color 180ms ease;
}

.accordion__item button[aria-expanded="true"] i {
    background: var(--green);
    transform: rotate(45deg);
}

.accordion__panel {
    padding: 0 55px 25px 5px;
}

.accordion__panel p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.contact-cta {
    position: relative;
    padding: 80px 0;
    color: var(--white);
    background: var(--green);
    overflow: hidden;
}

.contact-cta::after {
    position: absolute;
    top: -70%;
    right: -7%;
    width: 470px;
    height: 470px;
    border: 85px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.contact-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.contact-cta h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.contact-cta__inner > div:first-child > p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
}

.contact-cta__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-cta__actions > a span,
.contact-cta__actions > a strong {
    display: block;
}

.contact-cta__actions > a span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
}

.contact-cta__actions > a strong {
    font-size: 0.92rem;
}

.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: var(--navy-deep);
}

.site-footer__grid {
    display: grid;
    padding-top: 80px;
    padding-bottom: 65px;
    grid-template-columns: 1.15fr 0.65fr 0.65fr 0.85fr;
    gap: 50px;
}

.site-footer__brand > p {
    max-width: 300px;
    font-size: 0.72rem;
}

.brand--footer {
    width: 185px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
}

.brand--footer img {
    mix-blend-mode: normal;
}

.site-footer h2 {
    margin: 13px 0 25px;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: -0.01em;
}

.site-footer ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    font-size: 0.68rem;
    list-style: none;
}

.site-footer ul a,
.footer-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: color 180ms ease;
}

.site-footer ul a:hover,
.footer-link:hover {
    color: var(--white);
}

.site-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.site-footer__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 0.76rem;
}

.site-footer__social a:hover {
    background: var(--green);
}

.site-footer__contact {
    display: grid;
    align-content: start;
}

.site-footer__contact > a {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.site-footer__contact > a > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.site-footer__contact span,
.site-footer__contact strong {
    display: block;
}

.site-footer__contact span {
    font-size: 0.6rem;
}

.site-footer__contact strong {
    color: var(--white);
    font-size: 0.8rem;
}

.site-footer__bottom {
    display: flex;
    min-height: 67px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.59rem;
}

.site-footer__bottom p {
    margin: 0;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    gap: 9px;
}

.floating-action {
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 14px;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(9, 19, 30, 0.22);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    transition: transform 180ms ease, background-color 180ms ease;
}

.floating-action:hover {
    transform: translateX(-4px);
}

.floating-action--phone {
    background: var(--navy);
}

.floating-action--whatsapp {
    background: #208c57;
}

.floating-action--enquiry {
    background: var(--green);
}

.floating-action i {
    display: grid;
    width: 22px;
    place-items: center;
    font-size: 1rem;
}

.enquiry-dialog {
    width: min(1030px, calc(100% - 36px));
    max-height: min(830px, calc(100vh - 36px));
    padding: 0;
    background: var(--white);
    border: 0;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(8, 18, 28, 0.35);
    overflow: auto;
}

.enquiry-dialog::backdrop {
    background: rgba(10, 20, 31, 0.78);
    backdrop-filter: blur(6px);
}

.enquiry-dialog__layout {
    display: grid;
    min-height: 690px;
    grid-template-columns: 0.38fr 0.62fr;
}

.enquiry-dialog__aside {
    position: relative;
    padding: 56px 43px;
    color: var(--white);
    background:
        linear-gradient(rgba(19, 34, 50, 0.93), rgba(19, 34, 50, 0.93)),
        url("../images/caravan-holidays-peace-of-mind.webp") center/cover;
}

.enquiry-dialog__aside h2 {
    margin-bottom: 20px;
    font-size: 2.35rem;
}

.enquiry-dialog__aside > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.enquiry-dialog__aside ul {
    display: grid;
    gap: 12px;
    margin: 30px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.7rem;
    font-weight: 700;
    list-style: none;
}

.enquiry-dialog__aside li i {
    margin-right: 9px;
    color: #b8cbb5;
}

.enquiry-dialog__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.enquiry-dialog__phone > i {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    color: var(--navy);
    background: #c9d9c6;
    border-radius: 50%;
}

.enquiry-dialog__phone span,
.enquiry-dialog__phone a {
    display: block;
}

.enquiry-dialog__phone span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.61rem;
}

.enquiry-dialog__phone a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
}

.enquiry-dialog__main {
    position: relative;
    padding: 50px;
}

.dialog-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--navy);
    background: var(--grey-light);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.dialog-close--mobile {
    display: none;
}

.form-heading {
    margin-bottom: 27px;
}

.form-heading > span {
    color: var(--green);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 6px 0;
    font-size: 1.8rem;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.62rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    align-content: start;
}

.field > span {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: #f8f9f9;
    border: 1px solid #d9dfe1;
    border-radius: 7px;
    outline: 0;
    font-size: 0.75rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field textarea {
    min-height: 92px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(79, 106, 78, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: #b43b42;
}

.field--full {
    grid-column: 1 / -1;
}

.field-error,
.consent-error {
    display: none;
    margin-top: 4px;
    color: #9d2f36;
    font-size: 0.56rem;
    font-weight: 650;
}

.field.is-invalid .field-error,
.consent-error.is-visible {
    display: block;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.61rem;
}

.consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--green);
}

.form-submit {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.55rem;
    text-align: center;
}

.form-note i {
    margin-right: 5px;
    color: var(--green);
}

.form-success {
    display: grid;
    min-height: 560px;
    align-content: center;
    justify-items: start;
}

.form-success[hidden] {
    display: none;
}

.form-success > span {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 1.4rem;
}

.form-success h3 {
    font-size: 2rem;
}

.form-success > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.83rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    :root {
        --header-height: 88px;
    }

    .primary-nav {
        gap: 17px;
    }

    .primary-nav > a {
        font-size: 0.71rem;
    }

    .brand {
        width: 185px;
        height: 80px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.85fr);
        gap: 45px;
    }

    .hero__service-card {
        right: 0;
    }

    .service-card__body {
        padding: 25px;
    }

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

    .trust-strip__grid > div:first-child {
        padding-left: 18px;
    }

    .trust-strip__grid > div:nth-child(3) {
        border-right: 0;
    }

    .trust-strip__grid > div:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .work-grid,
    .before-after {
        grid-template-columns: 1fr 1fr;
    }

    .work-card--wide,
    .before-after__copy {
        grid-column: 1 / -1;
    }

    .before-after__copy {
        padding-bottom: 30px;
    }

    .process__steps li {
        padding-right: 30px;
        padding-left: 30px;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 0.7fr 0.7fr;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
        grid-template-columns: auto 1fr 1fr;
        align-items: center;
        gap: 35px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__contact h2 {
        margin: 0;
    }

    .site-footer__contact > a {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 36px, var(--container));
    }

    .section {
        padding: 90px 0;
    }

    .utility-bar__inner > p {
        display: none;
    }

    .utility-bar__inner {
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 0.68rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .nav-toggle__icon {
        display: grid;
        width: 25px;
        gap: 5px;
    }

    .nav-toggle__icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--navy);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        max-height: 0;
        padding: 0 18px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 30px rgba(18, 29, 42, 0.09);
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
    }

    .primary-nav.is-open {
        max-height: 550px;
        padding-top: 15px;
        padding-bottom: 25px;
        opacity: 1;
        visibility: visible;
    }

    .primary-nav > a {
        padding: 11px 4px;
        border-bottom: 1px solid var(--border);
    }

    .primary-nav > a::after {
        display: none;
    }

    .primary-nav .button {
        margin-top: 8px;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 70px;
        padding-bottom: 130px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 500px;
    }

    .hero__image-wrap {
        inset: 20px 0 20px 50px;
    }

    .hero__service-card {
        right: 20px;
    }

    .hero__quick-links {
        margin-top: -64px;
    }

    .quick-link {
        min-height: 126px;
        grid-template-columns: auto 1fr;
        padding: 24px 18px;
    }

    .quick-link > i {
        display: none;
    }

    .quick-link__icon {
        width: 44px;
        height: 44px;
    }

    .services {
        padding-top: 145px;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .service-card {
        display: grid;
        grid-template-columns: 0.8fr 1fr;
    }

    .service-card__image {
        height: 100%;
        min-height: 420px;
    }

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

    .trust-strip__grid > div {
        min-height: 100px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .trust-strip__grid > div:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.16);
    }

    .trust-strip__grid > div:nth-child(even) {
        border-right: 0;
    }

    .trust-strip__grid > div:last-child {
        grid-column: 1 / -1;
        justify-content: center;
        border-bottom: 0;
    }

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

    .craft__images {
        min-height: 600px;
    }

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

    .work-card {
        height: 340px;
    }

    .work-card--wide {
        grid-column: 1 / -1;
    }

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

    .process__steps li,
    .process__steps li:first-child,
    .process__steps li:last-child {
        min-height: 0;
        padding: 35px 35px 35px 110px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 0;
        border-radius: 0;
    }

    .process__steps li:first-child {
        border-radius: 14px 14px 0 0;
    }

    .process__steps li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0 0 14px 14px;
    }

    .process__steps li > i {
        position: absolute;
        top: 37px;
        left: 30px;
        width: 52px;
        height: 52px;
        margin: 0;
    }

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

    .areas__visual {
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }

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

    .review-grid blockquote > p {
        min-height: 0;
    }

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

    .faqs__intro {
        position: static;
    }

    .contact-cta__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .enquiry-dialog {
        max-height: calc(100vh - 24px);
    }

    .enquiry-dialog__layout {
        grid-template-columns: 0.34fr 0.66fr;
    }

    .enquiry-dialog__aside {
        padding: 46px 30px;
    }

    .enquiry-dialog__aside h2 {
        font-size: 1.85rem;
    }

    .enquiry-dialog__main {
        padding: 44px 30px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 78px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 26px, var(--container));
    }

    .section {
        padding: 76px 0;
    }

    h1 {
        font-size: clamp(2.65rem, 13vw, 4.1rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .utility-bar__inner {
        width: 100%;
    }

    .utility-bar__actions {
        width: 100%;
    }

    .utility-bar__actions a {
        width: 50%;
        justify-content: center;
        padding: 0 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.64rem;
    }

    .utility-bar__actions a:last-child {
        padding-right: 8px;
    }

    .site-header__inner {
        width: calc(100% - 26px);
    }

    .brand {
        width: 158px;
        height: 70px;
    }

    .hero::before {
        display: none;
    }

    .hero__grid {
        gap: 45px;
        padding-top: 58px;
        padding-bottom: 115px;
    }

    .hero__lead {
        font-size: 0.93rem;
    }

    .hero__actions {
        display: grid;
    }

    .hero__checks {
        display: grid;
        gap: 9px;
    }

    .hero__visual {
        min-height: 395px;
    }

    .hero__image-wrap {
        inset: 25px 0 25px 20px;
        border-radius: 120px 16px 16px 16px;
    }

    .hero__coverage {
        width: 112px;
        height: 112px;
        padding: 11px;
        border-width: 5px;
    }

    .hero__coverage span {
        font-size: 0.48rem;
    }

    .hero__coverage strong {
        font-size: 0.58rem;
    }

    .hero__service-card {
        right: 8px;
        min-width: 235px;
        padding: 13px 15px;
    }

    .hero__service-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero__quick-links {
        width: calc(100% - 26px);
        grid-template-columns: 1fr;
        border-radius: 13px;
    }

    .quick-link {
        min-height: 94px;
        padding: 17px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quick-link:last-child {
        border-bottom: 0;
    }

    .services {
        padding-top: 220px;
    }

    .service-card {
        display: block;
    }

    .service-card__image {
        min-height: 0;
        height: 230px;
    }

    .service-card__body {
        padding: 25px 22px 28px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid > div,
    .trust-strip__grid > div:nth-child(3),
    .trust-strip__grid > div:last-child {
        min-height: 85px;
        grid-column: auto;
        justify-content: flex-start;
        padding: 18px 6px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .trust-strip__grid > div:first-child {
        padding-left: 6px;
    }

    .trust-strip__grid > div:last-child {
        border-bottom: 0;
    }

    .craft__images {
        min-height: 470px;
    }

    .craft__image-main {
        inset: 0 30px 58px 0;
        border-radius: 100px 14px 14px 14px;
    }

    .craft__image-small {
        width: 185px;
        height: 170px;
        border-width: 6px;
    }

    .craft__badge {
        top: 15px;
        width: 104px;
        height: 104px;
        border-width: 5px;
    }

    .craft__badge strong {
        font-size: 0.57rem;
    }

    .craft__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .work-grid,
    .before-after {
        grid-template-columns: 1fr;
    }

    .work-card,
    .work-card--wide {
        height: 310px;
        grid-column: auto;
    }

    .before-after__copy {
        grid-column: auto;
        padding: 28px 23px;
    }

    .before-after figure {
        min-height: 250px;
    }

    .process__steps li,
    .process__steps li:first-child,
    .process__steps li:last-child {
        padding: 95px 24px 28px;
    }

    .process__steps li > i {
        top: 29px;
        left: 24px;
    }

    .process__cta {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .route-card {
        min-height: 520px;
        padding: 25px;
        border-width: 7px;
        border-radius: 100px 15px 15px 15px;
    }

    .route-card__line {
        left: 54px;
    }

    .route-card__start,
    .route-card__end {
        left: 34px;
    }

    .route-card__van {
        left: 35px;
    }

    .route-card__label {
        left: 102px;
        right: 20px;
    }

    .route-card__label strong {
        font-size: 0.78rem;
    }

    .lifestyle-cta {
        min-height: 650px;
    }

    .lifestyle-cta__overlay {
        background: linear-gradient(180deg, rgba(14, 26, 39, 0.72) 0%, rgba(14, 26, 39, 0.94) 70%);
    }

    .lifestyle-cta__content {
        align-self: end;
        padding-top: 180px;
        padding-bottom: 70px;
    }

    .lifestyle-cta__content > div {
        display: grid;
    }

    .review-grid blockquote {
        padding: 27px 23px;
    }

    .accordion__item button {
        min-height: 75px;
        font-size: 0.8rem;
    }

    .contact-cta {
        padding: 70px 0;
    }

    .contact-cta__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer__contact h2 {
        margin-bottom: 2px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 18px 0;
    }

    .floating-actions {
        right: 11px;
        bottom: 11px;
        display: flex;
        gap: 6px;
    }

    .floating-action {
        min-width: 46px;
        min-height: 46px;
        padding: 0 12px;
        border-radius: 50%;
    }

    .floating-action span {
        display: none;
    }

    .enquiry-dialog {
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        border-radius: 14px;
    }

    .enquiry-dialog__layout {
        display: block;
    }

    .enquiry-dialog__aside {
        padding: 38px 25px 28px;
    }

    .enquiry-dialog__aside h2 {
        max-width: 260px;
        font-size: 1.85rem;
    }

    .enquiry-dialog__aside ul,
    .enquiry-dialog__phone {
        display: none;
    }

    .dialog-close {
        display: none;
    }

    .dialog-close--mobile {
        display: grid;
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
    }

    .enquiry-dialog__main {
        padding: 30px 20px 36px;
    }

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

    .field--full {
        grid-column: auto;
    }

    .form-success {
        min-height: 460px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Shared multi-page shell and internal pages */
:root {
    --header-height: 126px;
}

.site-header {
    --header-height: 126px;
}

.site-header .brand {
    width: 270px;
    height: 124px;
    background: var(--white);
    filter: none;
}

.primary-nav {
    gap: clamp(13px, 1.55vw, 24px);
}

.primary-nav > a,
.nav-dropdown > button {
    color: var(--navy);
    font-size: 0.73rem;
    font-weight: 700;
}

.primary-nav > a.is-active,
.nav-dropdown__menu a.is-active {
    color: var(--green);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-dropdown > button i {
    font-size: 0.55rem;
    transition: transform 180ms ease;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 20;
    display: grid;
    width: 330px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translate(-50%, 8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.nav-dropdown:hover > button i,
.nav-dropdown.is-open > button i {
    transform: rotate(180deg);
}

.nav-dropdown__menu a {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
    background: var(--green-light);
}

.nav-dropdown__menu a > i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.nav-dropdown__menu a span,
.nav-dropdown__menu a small {
    display: block;
}

.nav-dropdown__menu a small {
    margin-top: 1px;
    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 500;
}

.trailer-callout {
    display: grid;
    margin-top: 34px;
    padding: 34px 38px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    background: var(--green-light);
    border: 1px solid rgba(79, 106, 78, 0.18);
    border-radius: var(--radius);
}

.trailer-callout__icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 1.35rem;
}

.trailer-callout .eyebrow,
.trailer-callout h3,
.trailer-callout p {
    margin-bottom: 0;
}

.trailer-callout h3 {
    margin: 6px 0 5px;
    font-size: 1.55rem;
}

.trailer-callout > div:nth-child(2) > p:last-child {
    color: var(--muted);
    font-size: 0.75rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.6rem;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs i {
    font-size: 0.45rem;
}

.breadcrumbs--dark {
    color: var(--muted);
}

.breadcrumbs--dark a:hover {
    color: var(--green);
}

.page-hero {
    position: relative;
    color: var(--white);
    background: var(--navy);
    overflow: hidden;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(125deg, transparent 47%, rgba(255, 255, 255, 0.055) 48%, transparent 49%);
    background-size: 190px 190px;
    content: "";
    opacity: 0.28;
}

.page-hero__grid {
    position: relative;
    display: grid;
    min-height: 650px;
    padding-top: 78px;
    padding-bottom: 82px;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 750px;
    font-size: clamp(3rem, 5vw, 5.25rem);
}

.page-hero__lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
}

.page-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 27px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
    font-weight: 700;
    list-style: none;
}

.page-hero__checks i {
    margin-right: 7px;
    color: #b8cbb5;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.page-hero__visual {
    position: relative;
    min-height: 470px;
}

.page-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    border: 9px solid rgba(255, 255, 255, 0.08);
    border-radius: 190px 20px 20px 20px;
    box-shadow: 0 30px 70px rgba(7, 15, 24, 0.3);
}

.page-hero__icon {
    position: absolute;
    right: -24px;
    bottom: 28px;
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    color: var(--navy);
    background: #c9d9c6;
    border: 7px solid var(--navy);
    border-radius: 50%;
    font-size: 1.8rem;
}

.page-hero--compact .page-hero__grid,
.page-hero--areas .page-hero__grid {
    min-height: 610px;
}

.service-details {
    background: var(--grey-light);
}

.service-inclusions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.inclusion-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    box-shadow: 0 8px 20px rgba(18, 29, 42, 0.04);
}

.inclusion-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.inclusion-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.inclusion-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.service-gallery {
    background: var(--white);
}

.service-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-gallery__grid figure {
    position: relative;
    height: 360px;
    margin: 0;
    border-radius: var(--radius-small);
    overflow: hidden;
}

.service-gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-gallery__grid figure:hover img {
    transform: scale(1.035);
}

.service-gallery__grid figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px 17px;
    color: var(--white);
    background: rgba(17, 29, 42, 0.9);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

.mobile-benefit,
.location-guidance {
    color: var(--white);
    background: var(--green-dark);
}

.mobile-benefit__grid,
.location-guidance__grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
}

.mobile-benefit__grid > div:first-child > p:not(.eyebrow),
.location-guidance__grid > div > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.text-link--light {
    color: var(--white);
}

.mobile-benefit__steps {
    display: grid;
    gap: 12px;
}

.mobile-benefit__steps > div {
    display: grid;
    padding: 21px 24px;
    grid-template-columns: 48px 1fr;
    gap: 1px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
}

.mobile-benefit__steps span {
    grid-row: 1 / 3;
    color: #c9d9c6;
    font-size: 0.72rem;
    font-weight: 800;
}

.mobile-benefit__steps strong {
    color: var(--white);
    font-size: 0.85rem;
}

.mobile-benefit__steps p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.65rem;
}

.service-faqs {
    background: var(--grey-light);
}

.story-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.lead-copy {
    color: var(--green-dark);
    font-size: 1.05rem;
    font-weight: 650;
}

.story-section__grid > div > p:not(.eyebrow) {
    color: var(--muted);
}

.values-card {
    padding: 38px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.values-card ul {
    display: grid;
    gap: 20px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.values-card li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.65rem;
}

.values-card li i {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: var(--navy);
    background: #c9d9c6;
    border-radius: 50%;
}

.values-card li strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-size: 0.78rem;
}

.owner-gallery {
    background: var(--grey-light);
}

.coverage-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.region-lozenges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -16px 0 30px;
    padding: 0;
    list-style: none;
}

.region-lozenges span {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    color: var(--navy);
    background: var(--green-light);
    border: 1px solid #cbd9c9;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.25;
}

.region-lozenges i {
    color: var(--green-dark);
}

.coverage-groups article {
    padding: 30px;
    background: var(--grey-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
}

.coverage-groups article > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.coverage-groups h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.coverage-groups p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.coverage-groups__cta {
    color: var(--white);
    background: var(--navy) !important;
    border-color: var(--navy) !important;
}

.coverage-groups__cta p {
    color: rgba(255, 255, 255, 0.66);
}

.coverage-groups__cta .text-link {
    margin-top: 16px;
    color: var(--white);
}

.location-guidance__grid ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-guidance__grid li {
    display: grid;
    padding: 17px 19px;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    font-weight: 650;
}

.location-guidance__grid li i {
    color: #c9d9c6;
}

.contact-page {
    padding: 85px 0 115px;
    background: var(--grey-light);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}

.contact-page__details {
    padding-top: 22px;
}

.contact-page__details h1 {
    max-width: 560px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.contact-page__details > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-methods {
    display: grid;
    gap: 10px;
    margin: 35px 0;
}

.contact-methods a {
    display: grid;
    padding: 16px 18px;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
}

.contact-methods a > i {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
}

.contact-methods small,
.contact-methods strong {
    display: block;
}

.contact-methods small {
    color: var(--muted);
    font-size: 0.55rem;
}

.contact-methods strong {
    overflow-wrap: anywhere;
    font-size: 0.78rem;
}

.contact-page__note {
    display: grid;
    padding: 18px;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: var(--muted);
    background: var(--green-light);
    border-radius: 9px;
    font-size: 0.63rem;
}

.contact-page__note i {
    color: var(--green);
}

.contact-page__note p {
    margin: 0;
}

.contact-page__form {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: underline;
}

.form-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    color: #7d252c;
    background: #fff0f1;
    border: 1px solid #edc3c6;
    border-radius: 8px;
    font-size: 0.68rem;
}

.form-alert strong {
    display: block;
}

.legal-hero {
    padding: 80px 0 65px;
    background: var(--grey-light);
}

.legal-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-hero p:last-child {
    color: var(--muted);
    font-size: 0.68rem;
}

.legal-page__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: center;
    gap: 80px;
}

.legal-page aside {
    position: sticky;
    top: 140px;
    display: grid;
    align-self: start;
    gap: 8px;
    padding: 22px;
    background: var(--grey-light);
    border-radius: 9px;
    font-size: 0.65rem;
}

.legal-page aside strong {
    margin-bottom: 7px;
    font-size: 0.75rem;
}

.legal-page aside a {
    color: var(--muted);
}

.legal-page aside a:hover {
    color: var(--green);
}

.legal-page article h2 {
    margin-top: 50px;
    font-size: 1.65rem;
}

.legal-page article h2:first-child {
    margin-top: 0;
}

.legal-page article p {
    color: var(--muted);
    font-size: 0.8rem;
}

.legal-page article a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: underline;
}

.status-page {
    display: grid;
    min-height: 680px;
    padding: 100px 0;
    place-items: center;
    background: var(--grey-light);
}

.status-page__card {
    max-width: 760px;
    padding: 65px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.status-page__icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 25px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 1.5rem;
}

.status-page h1 {
    margin-inline: auto;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.status-page__card > p:not(.eyebrow) {
    color: var(--muted);
}

.status-page__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.button--outline {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

@media (max-width: 1120px) {
    :root {
        --header-height: 106px;
    }

    .site-header .brand {
        width: 225px;
        height: 104px;
    }

    .primary-nav {
        gap: 14px;
    }

    .primary-nav > a,
    .nav-dropdown > button {
        font-size: 0.67rem;
    }

    .page-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
        gap: 45px;
    }

    .service-inclusions,
    .coverage-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__contact strong {
        overflow-wrap: anywhere;
    }

    .site-footer__contact {
        grid-template-columns: auto repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 104px;
    }

    .site-header .brand {
        width: 220px;
        height: 102px;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - 130px);
        overflow-y: auto;
    }

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

    .nav-dropdown > button {
        width: 100%;
        justify-content: space-between;
        padding: 11px 4px;
    }

    .nav-dropdown__menu {
        position: static;
        display: none;
        width: 100%;
        padding: 4px 4px 12px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
        display: none;
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
    }

    .page-hero__grid,
    .story-section__grid,
    .mobile-benefit__grid,
    .location-guidance__grid,
    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__contact {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-hero__grid {
        padding-top: 64px;
        padding-bottom: 75px;
    }

    .page-hero__visual {
        min-height: 480px;
    }

    .service-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-gallery__grid figure:last-child {
        grid-column: 1 / -1;
    }

    .legal-page__layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legal-page aside {
        position: static;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 92px;
    }

    .site-header .brand {
        width: 205px;
        height: 90px;
    }

    .trailer-callout {
        padding: 28px 23px;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .page-hero__grid {
        padding-top: 48px;
        padding-bottom: 65px;
    }

    .breadcrumbs {
        margin-bottom: 25px;
    }

    .page-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .page-hero__lead {
        font-size: 0.9rem;
    }

    .page-hero__actions {
        display: grid;
    }

    .page-hero__visual,
    .page-hero__visual > img {
        min-height: 360px;
    }

    .page-hero__visual > img {
        border-radius: 110px 14px 14px 14px;
    }

    .page-hero__icon {
        right: -4px;
        width: 82px;
        height: 82px;
    }

    .service-inclusions,
    .service-gallery__grid,
    .coverage-groups {
        grid-template-columns: 1fr;
    }

    .service-gallery__grid figure,
    .service-gallery__grid figure:last-child {
        height: 300px;
        grid-column: auto;
    }

    .inclusion-card,
    .coverage-groups article {
        padding: 25px 22px;
    }

    .values-card {
        padding: 30px 23px;
    }

    .contact-page {
        padding: 55px 0 80px;
    }

    .contact-page__form {
        padding: 28px 20px;
    }

    .legal-hero {
        padding: 55px 0 45px;
    }

    .legal-page__layout {
        gap: 35px;
    }

    .status-page {
        padding: 70px 0;
    }

    .status-page__card {
        padding: 45px 22px;
    }

    .status-page__actions {
        display: grid;
    }
}

/* Cross-browser media sizing and contact layout hardening. */
.hero__content,
.hero__visual,
.page-hero__content,
.page-hero__visual,
.contact-page__details,
.contact-page__form,
.service-card,
.coverage-groups article {
    min-width: 0;
}

.page-hero__visual {
    height: 470px;
    min-height: 0;
    overflow: visible;
}

.page-hero__visual > img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.site-footer__contact strong,
.contact-methods strong,
.utility-bar__actions a {
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .site-footer__contact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__contact h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .page-hero__visual {
        height: 480px;
        min-height: 0;
    }

    .site-footer__contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__contact h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .utility-bar__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-self: auto;
    }

    .utility-bar__actions a {
        width: 100%;
        min-height: 34px;
        padding: 3px 5px;
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.55rem;
        line-height: 1.15;
        text-align: center;
        white-space: nowrap;
    }

    .page-hero__visual {
        height: 360px;
        min-height: 0;
    }

    .region-lozenges {
        margin-top: -8px;
    }

    .region-lozenges span {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        text-align: center;
    }

    .site-footer__contact {
        grid-template-columns: 1fr;
    }
}
