:root {
    --as-navy-950: #020a13;
    --as-navy-900: #03101f;
    --as-navy-850: #061729;
    --as-navy-800: #0a2037;
    --as-navy-700: #102b48;
    --as-gold-500: #d7a83f;
    --as-gold-400: #e8be5e;
    --as-gold-300: #f1d58c;
    --as-cream: #f7f1e3;
    --as-white: #ffffff;
    --as-muted: #9eabb9;
    --as-border: rgba(215, 168, 63, 0.28);
    --as-border-soft: rgba(255, 255, 255, 0.09);
    --as-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --as-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --as-sans: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.as-body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--as-navy-950);
    color: var(--as-white);
    font-family: var(--as-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

.as-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--as-gold-500);
    color: var(--as-navy-950);
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

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

.as-eyebrow {
    margin: 0 0 12px;
    color: var(--as-gold-400);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.as-section {
    position: relative;
    padding: 28px 0;
}

.as-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.as-btn:hover {
    transform: translateY(-2px);
}

.as-btn-gold {
    background: linear-gradient(135deg, #c6932d, #e6bd5d 55%, #c99531);
    color: #08111d;
    box-shadow: 0 12px 26px rgba(215, 168, 63, 0.18);
}

.as-btn-gold:hover {
    color: #08111d;
    box-shadow: 0 15px 34px rgba(215, 168, 63, 0.28);
}

.as-btn-outline {
    border-color: rgba(232, 190, 94, 0.62);
    background: rgba(3, 16, 31, 0.54);
    color: var(--as-white);
    backdrop-filter: blur(12px);
}

.as-btn-outline:hover {
    border-color: var(--as-gold-400);
    color: var(--as-gold-300);
}

/* Header */
.as-site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1200;
    height: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(2, 10, 19, 0.9), rgba(2, 10, 19, 0.52));
    backdrop-filter: blur(15px);
    transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.as-site-header.scrolled {
    height: 72px;
    background: rgba(2, 10, 19, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.as-navbar-shell {
    width: min(1220px, calc(100% - 40px));
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 250px 1fr auto;
    align-items: center;
    gap: 26px;
}

.as-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.as-brand img {
    width: 236px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    border-radius: 3px;
}

.as-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
}

.as-main-nav a {
    position: relative;
    padding: 30px 0 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.as-main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: var(--as-gold-500);
    transform: translateX(-50%);
    transition: width 0.22s ease;
}

.as-main-nav a:hover,
.as-main-nav a.active {
    color: var(--as-gold-400);
}

.as-main-nav a:hover::after,
.as-main-nav a.active::after {
    width: 100%;
}

.as-site-header.scrolled .as-main-nav a {
    padding-top: 24px;
    padding-bottom: 22px;
}

.as-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--as-gold-500);
    border-radius: 6px;
    color: var(--as-gold-400);
    font-size: 0.76rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.as-header-cta:hover {
    background: var(--as-gold-500);
    color: var(--as-navy-950);
    transform: translateY(-1px);
}

.as-whatsapp-mark {
    font-size: 1rem;
}

.as-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--as-border);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.03);
}

.as-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--as-gold-400);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.as-hero {
    position: relative;
    min-height: 625px;
    padding-top: 84px;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(2, 10, 19, 0.98) 0%, rgba(2, 10, 19, 0.9) 26%, rgba(2, 10, 19, 0.38) 57%, rgba(2, 10, 19, 0.12) 100%),
        url("../images/hero-luxury.jpg") center 39% / cover no-repeat;
}

.as-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(2, 10, 19, 0.72) 58%, var(--as-navy-950));
}

.as-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 62% 34%, rgba(230, 189, 93, 0.12), transparent 25%),
        linear-gradient(180deg, rgba(2, 10, 19, 0.05), rgba(2, 10, 19, 0.18));
}

.as-hero-inner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.as-hero-content {
    width: min(560px, 62%);
    padding: 50px 0 115px;
}

.as-hero h1 {
    max-width: 560px;
    margin: 0;
    font-family: var(--as-serif);
    font-size: clamp(3.4rem, 6.1vw, 5.9rem);
    font-weight: 600;
    line-height: 0.91;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.42);
}

.as-hero h1 span {
    display: block;
    color: var(--as-gold-400);
}

.as-hero-subtitle {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.as-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.as-trust-note {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 390px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.74);
}

.as-trust-emblem {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--as-gold-500);
    border-radius: 50%;
    color: var(--as-gold-400);
    font-size: 1.35rem;
}

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

.as-trust-note strong {
    margin-bottom: 4px;
    color: var(--as-white);
    font-size: 0.75rem;
}

.as-trust-note span {
    font-size: 0.68rem;
    line-height: 1.55;
}

.as-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 100px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.as-slider-dots span {
    width: 28px;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
}

.as-slider-dots span.active {
    background: var(--as-gold-500);
}

.as-contact-rail {
    position: absolute;
    right: max(22px, calc((100vw - 1260px) / 2));
    top: 49%;
    z-index: 7;
    width: 72px;
    overflow: hidden;
    border: 1px solid rgba(215, 168, 63, 0.62);
    border-radius: 13px;
    background: rgba(2, 10, 19, 0.89);
    box-shadow: var(--as-shadow);
    backdrop-filter: blur(15px);
    transform: translateY(-50%);
}

.as-contact-rail a {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition: background 0.2s ease, color 0.2s ease;
}

.as-contact-rail a:last-child {
    border-bottom: 0;
}

.as-contact-rail a:hover {
    background: rgba(215, 168, 63, 0.12);
    color: var(--as-gold-400);
}

.as-contact-rail span {
    color: var(--as-gold-400);
    font-size: 1.25rem;
}

.as-contact-rail small {
    font-size: 0.65rem;
}

.as-enquiry-wrap {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 8;
    transform: translateX(-50%);
}

.as-enquiry-bar {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1.35fr 1.1fr 1.1fr 1.1fr 1fr auto;
    align-items: end;
    gap: 15px;
    padding: 14px 16px;
    border: 1px solid var(--as-border);
    border-radius: 9px;
    background: rgba(2, 10, 19, 0.88);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.as-enquiry-intro {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.as-plane {
    color: var(--as-gold-400);
    font-size: 2rem;
    transform: rotate(-16deg);
}

.as-enquiry-intro strong,
.as-enquiry-intro span,
.as-enquiry-intro small {
    display: block;
}

.as-enquiry-intro strong,
.as-enquiry-intro span {
    font-family: var(--as-serif);
    font-size: 1.18rem;
    line-height: 1;
}

.as-enquiry-intro span {
    margin-top: 2px;
    color: var(--as-gold-400);
}

.as-enquiry-intro small {
    margin-top: 9px;
    color: var(--as-muted);
    font-size: 0.61rem;
}

.as-enquiry-bar label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.64rem;
    font-weight: 600;
}

.as-enquiry-bar input,
.as-enquiry-bar select {
    width: 100%;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    outline: none;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    color-scheme: dark;
}

.as-enquiry-bar input:focus,
.as-enquiry-bar select:focus {
    border-color: var(--as-gold-500);
    box-shadow: 0 0 0 3px rgba(215, 168, 63, 0.09);
}

.as-enquiry-bar option {
    background: var(--as-navy-900);
}

.as-enquire-btn {
    min-height: 42px;
    padding-inline: 18px;
    white-space: nowrap;
}

/* Services */
.as-services-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
        var(--as-navy-950);
}

.as-services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.as-services-grid a {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.065);
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.as-services-grid a:last-child {
    border-right: 0;
}

.as-services-grid a:hover {
    background: rgba(215, 168, 63, 0.055);
    transform: translateY(-2px);
}

.as-services-grid span {
    color: var(--as-gold-400);
    font-size: 1.4rem;
}

.as-services-grid strong {
    color: var(--as-gold-400);
    font-size: 0.67rem;
}

.as-services-grid small {
    color: var(--as-muted);
    font-size: 0.59rem;
}

/* Feature panels */
.as-journey-section {
    padding-top: 10px;
    background: linear-gradient(180deg, var(--as-navy-950), #041424 45%, var(--as-navy-950));
}

.as-feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1.08fr;
    gap: 8px;
}

.as-panel {
    min-height: 268px;
    padding: 16px;
    border: 1px solid var(--as-border);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.015);
}

.as-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.as-panel-heading h2 {
    margin: 0;
    font-family: var(--as-serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.as-panel-heading a {
    color: var(--as-gold-400);
    font-size: 0.61rem;
}

.as-mini-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.as-tour-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.as-tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 168, 63, 0.45);
}

.as-tour-card img {
    width: 100%;
    height: 116px;
    object-fit: cover;
}

.as-tour-card div {
    display: grid;
    gap: 5px;
    padding: 9px;
}

.as-tour-card strong {
    font-size: 0.72rem;
}

.as-tour-card span {
    color: var(--as-muted);
    font-size: 0.58rem;
}

.as-tour-card small {
    color: var(--as-gold-400);
    font-size: 0.57rem;
}

.as-tour-card small b {
    color: var(--as-white);
    font-weight: 600;
}

.as-fixed-card {
    position: relative;
    min-height: 212px;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.as-fixed-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 19, 0.94), rgba(2, 10, 19, 0.28));
}

.as-fixed-card img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.as-fixed-card:hover img {
    transform: scale(1.045);
}

.as-fixed-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px;
}

.as-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 20px;
    background: rgba(215, 168, 63, 0.14);
    color: var(--as-gold-400);
    font-size: 0.56rem;
    font-weight: 700;
}

.as-fixed-overlay h3 {
    margin: 9px 0 2px;
    font-family: var(--as-serif);
    font-size: 1.45rem;
}

.as-fixed-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
}

.as-fixed-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.59rem;
}

.as-fixed-overlay > strong {
    color: var(--as-gold-400);
    font-size: 1.05rem;
}

.as-fixed-overlay > strong small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.55rem;
    font-weight: 500;
}

/* Why */
.as-why-section {
    padding: 38px 0 32px;
    background:
        linear-gradient(90deg, rgba(2, 10, 19, 0.97), rgba(3, 16, 31, 0.76), rgba(2, 10, 19, 0.96)),
        url("../images/navy-texture.jpg") center / cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.as-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 58px;
    align-items: center;
}

.as-why-copy h2 {
    margin: 0 0 13px;
    font-family: var(--as-serif);
    font-size: clamp(2.1rem, 3.3vw, 3.35rem);
    line-height: 0.98;
}

.as-why-copy > p:not(.as-eyebrow) {
    max-width: 450px;
    margin: 0 0 20px;
    color: var(--as-muted);
    font-size: 0.73rem;
    line-height: 1.75;
}

.as-why-copy .as-btn {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 0.65rem;
}

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

.as-stats-grid div {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
}

.as-stats-grid div:last-child {
    border-right: 0;
}

.as-stats-grid span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid rgba(215, 168, 63, 0.34);
    border-radius: 50%;
    color: var(--as-gold-400);
    background: rgba(215, 168, 63, 0.06);
    font-size: 1.25rem;
}

.as-stats-grid strong {
    font-family: var(--as-serif);
    font-size: 1rem;
}

.as-stats-grid small {
    margin-top: 4px;
    color: var(--as-gold-400);
    font-size: 0.55rem;
}

/* Proof */
.as-proof-section {
    background: #061523;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.as-proof-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
}

.as-clients-block,
.as-testimonial-block {
    min-height: 192px;
    padding: 22px;
}

.as-clients-block {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.as-client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 16px 0 19px;
}

.as-client-logos span {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--as-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.as-clients-block > a {
    color: var(--as-gold-400);
    font-size: 0.62rem;
}

.as-testimonial-block blockquote {
    position: relative;
    margin: 14px 0 0;
    padding: 14px 16px 14px 45px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--as-muted);
}

.as-testimonial-block blockquote > span {
    position: absolute;
    left: 15px;
    top: 5px;
    color: var(--as-gold-400);
    font-family: var(--as-serif);
    font-size: 2.2rem;
}

.as-testimonial-block p {
    margin: 0;
    font-size: 0.67rem;
    line-height: 1.65;
}

.as-testimonial-block blockquote div {
    margin-top: 8px;
    color: var(--as-gold-400);
    letter-spacing: 0.1em;
    font-size: 0.72rem;
}

.as-testimonial-block cite {
    display: block;
    margin-top: 4px;
    color: var(--as-white);
    font-size: 0.61rem;
    font-style: normal;
}

/* Gallery */
.as-gallery-section {
    padding: 12px 0 0;
    background: var(--as-navy-950);
}

.as-gallery-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 7px;
}

.as-gallery-heading .as-eyebrow {
    margin: 0;
}

.as-gallery-heading a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.6rem;
}

.as-gallery-grid {
    display: grid;
    grid-template-columns: 1.03fr 1.08fr 1.1fr 1.08fr 1.37fr;
    gap: 5px;
}

.as-gallery-grid img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 4px;
    filter: saturate(0.9) contrast(1.03);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.as-gallery-grid img:hover {
    transform: translateY(-4px);
    filter: saturate(1.05) contrast(1.06);
}

/* Footer */
.as-footer {
    padding-top: 25px;
    background: #03101d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.as-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 28px;
}

.as-footer-brand img {
    width: 230px;
    height: 63px;
    object-fit: contain;
    object-position: left center;
}

.as-footer-brand p {
    max-width: 270px;
    margin: 13px 0;
    color: var(--as-muted);
    font-size: 0.67rem;
    line-height: 1.65;
}

.as-socials {
    display: flex;
    gap: 9px;
}

.as-socials a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 168, 63, 0.45);
    border-radius: 50%;
    color: var(--as-gold-400);
    font-size: 0.61rem;
}

.as-footer h3 {
    margin: 7px 0 12px;
    color: var(--as-gold-400);
    font-size: 0.75rem;
}

.as-footer-grid > div:not(.as-footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.as-footer-grid > div:not(.as-footer-brand) > a {
    margin-bottom: 7px;
    color: var(--as-muted);
    font-size: 0.64rem;
}

.as-footer-grid > div:not(.as-footer-brand) > a:hover {
    color: var(--as-gold-400);
}

.as-contact-list a {
    color: rgba(255, 255, 255, 0.86) !important;
}

.as-copyright {
    padding: 13px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--as-muted);
    text-align: center;
    font-size: 0.58rem;
}

/* Inner pages */
.as-inner-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding-top: 84px;
    background:
        linear-gradient(90deg, rgba(2, 10, 19, 0.95), rgba(2, 10, 19, 0.48), rgba(2, 10, 19, 0.78)),
        url("../images/hero-luxury.jpg") center / cover no-repeat;
}

.as-inner-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, transparent, var(--as-navy-950));
}

.as-inner-hero .as-container {
    position: relative;
    z-index: 2;
}

.as-inner-hero h1 {
    margin: 0;
    font-family: var(--as-serif);
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    line-height: 0.95;
}

.as-inner-hero p:not(.as-eyebrow) {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.as-content-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 55px;
    align-items: center;
    padding-block: 35px;
}

.as-content-grid h2,
.as-feature-copy h2,
.as-contact-page h2,
.as-large-departure h2 {
    margin: 0 0 16px;
    font-family: var(--as-serif);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1;
}

.as-content-grid p,
.as-feature-copy > p {
    color: var(--as-muted);
    line-height: 1.8;
}

.as-content-image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border: 1px solid var(--as-border);
    border-radius: 10px;
}

.as-page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-block: 22px;
}

.as-page-card-grid article {
    overflow: hidden;
    border: 1px solid var(--as-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.as-page-card-grid img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.as-page-card-grid h2 {
    margin: 16px 18px 7px;
    font-family: var(--as-serif);
    font-size: 1.9rem;
}

.as-page-card-grid p {
    margin: 0 18px 20px;
    color: var(--as-muted);
    font-size: 0.82rem;
}

.as-feature-copy {
    padding-block: 38px;
}

.as-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.as-info-cards div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--as-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.as-info-cards strong {
    margin-bottom: 8px;
    color: var(--as-gold-400);
}

.as-info-cards span {
    color: var(--as-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.as-large-departure {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    overflow: hidden;
    margin-block: 25px;
    border: 1px solid var(--as-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.as-large-departure img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.as-large-departure > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px;
}

.as-large-departure p,
.as-large-departure li {
    color: var(--as-muted);
}

.as-large-departure ul {
    margin: 10px 0 20px;
    padding-left: 20px;
    line-height: 1.8;
}

.as-large-departure > div > strong {
    margin-bottom: 20px;
    color: var(--as-gold-400);
    font-size: 1.35rem;
}

.as-contact-page {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    padding-block: 35px;
}

.as-contact-page > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.as-contact-page > div > a {
    margin-bottom: 14px;
    color: var(--as-muted);
}

.as-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--as-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.as-contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
}

.as-contact-form label:nth-child(3),
.as-contact-form label:nth-child(4),
.as-contact-form button {
    grid-column: 1 / -1;
}

.as-contact-form input,
.as-contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.02);
    color: var(--as-white);
}

.as-contact-form input:focus,
.as-contact-form textarea:focus {
    border-color: var(--as-gold-500);
}

/* Responsive */
@media (max-width: 1180px) {
    .as-navbar-shell {
        grid-template-columns: 220px 1fr auto;
        gap: 18px;
    }

    .as-brand img {
        width: 205px;
    }

    .as-main-nav {
        gap: 15px;
    }

    .as-main-nav a {
        font-size: 0.7rem;
    }

    .as-enquiry-bar {
        grid-template-columns: 1.2fr repeat(4, 1fr) auto;
        gap: 10px;
    }

    .as-enquiry-intro strong,
    .as-enquiry-intro span {
        font-size: 1rem;
    }

    .as-feature-layout {
        grid-template-columns: 1fr 1fr;
    }

    .as-fixed-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .as-header-cta {
        display: none;
    }

    .as-navbar-shell {
        grid-template-columns: 220px 1fr;
    }

    .as-contact-rail {
        right: 16px;
    }

    .as-enquiry-bar {
        grid-template-columns: repeat(4, 1fr);
        align-items: end;
    }

    .as-enquiry-intro {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        padding: 0 0 10px;
    }

    .as-enquire-btn {
        grid-column: 4;
    }

    .as-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .as-services-grid a:nth-child(4) {
        border-right: 0;
    }

    .as-services-grid a:nth-child(-n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .as-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .as-proof-grid {
        grid-template-columns: 1fr;
    }

    .as-clients-block {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 860px) {
    .as-site-header,
    .as-site-header.scrolled {
        height: 72px;
    }

    .as-navbar-shell {
        width: min(100% - 28px, 1180px);
        grid-template-columns: 1fr auto;
    }

    .as-brand img {
        width: 210px;
        height: 52px;
    }

    .as-menu-toggle {
        display: block;
        justify-self: end;
    }

    .as-menu-toggle.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .as-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .as-menu-toggle.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .as-main-nav {
        position: fixed;
        inset: 72px 0 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 28px 40px;
        background: rgba(2, 10, 19, 0.985);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .as-main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .as-main-nav a,
    .as-site-header.scrolled .as-main-nav a {
        padding: 16px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.9rem;
    }

    .as-main-nav a::after {
        display: none;
    }

    .as-hero {
        min-height: 780px;
        padding-top: 72px;
        background-position: 64% center;
    }

    .as-hero-inner {
        min-height: 550px;
        align-items: flex-start;
    }

    .as-hero-content {
        width: 82%;
        padding-top: 68px;
        padding-bottom: 230px;
    }

    .as-contact-rail {
        top: 43%;
        width: 64px;
    }

    .as-contact-rail a {
        min-height: 72px;
    }

    .as-slider-dots {
        display: none;
    }

    .as-enquiry-wrap {
        bottom: 18px;
    }

    .as-enquiry-bar {
        grid-template-columns: 1fr 1fr;
    }

    .as-enquire-btn {
        grid-column: auto;
    }

    .as-feature-layout {
        grid-template-columns: 1fr;
    }

    .as-fixed-panel {
        grid-column: auto;
    }

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

    .as-gallery-grid img:nth-child(4),
    .as-gallery-grid img:nth-child(5) {
        display: none;
    }

    .as-content-grid,
    .as-contact-page,
    .as-large-departure {
        grid-template-columns: 1fr;
    }

    .as-page-card-grid,
    .as-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .as-container {
        width: min(100% - 28px, 1180px);
    }

    .as-brand img {
        width: 178px;
        height: 46px;
    }

    .as-hero {
        min-height: 900px;
        background-position: 66% center;
    }

    .as-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(180deg, rgba(2, 10, 19, 0.38), rgba(2, 10, 19, 0.88) 64%, var(--as-navy-950));
    }

    .as-hero-inner {
        min-height: 590px;
    }

    .as-hero-content {
        width: calc(100% - 55px);
        padding-top: 55px;
        padding-bottom: 330px;
    }

    .as-hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .as-hero-subtitle {
        font-size: 0.9rem;
    }

    .as-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .as-hero-actions .as-btn {
        width: 100%;
    }

    .as-trust-note {
        align-items: flex-start;
    }

    .as-contact-rail {
        right: 8px;
        top: 36%;
        width: 50px;
    }

    .as-contact-rail a {
        min-height: 58px;
        gap: 3px;
    }

    .as-contact-rail small {
        font-size: 0.48rem;
    }

    .as-contact-rail span {
        font-size: 1rem;
    }

    .as-enquiry-bar {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .as-enquiry-intro,
    .as-enquire-btn {
        grid-column: auto;
    }

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

    .as-services-grid a {
        border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .as-services-grid a:nth-child(2n) {
        border-right: 0 !important;
    }

    .as-services-grid a:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .as-mini-card-grid,
    .as-stats-grid,
    .as-client-logos,
    .as-footer-grid,
    .as-page-card-grid,
    .as-info-cards,
    .as-contact-form {
        grid-template-columns: 1fr;
    }

    .as-stats-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .as-stats-grid div:last-child {
        border-bottom: 0;
    }

    .as-proof-grid,
    .as-why-grid {
        gap: 0;
    }

    .as-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .as-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .as-gallery-grid img:nth-child(3) {
        grid-column: 1 / -1;
    }

    .as-footer-grid {
        gap: 18px;
    }

    .as-footer-grid > div {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .as-inner-hero {
        min-height: 330px;
        padding-top: 72px;
    }

    .as-content-image,
    .as-large-departure img {
        min-height: 300px;
    }

    .as-large-departure > div {
        padding: 24px;
    }

    .as-contact-form label:nth-child(3),
    .as-contact-form label:nth-child(4),
    .as-contact-form button {
        grid-column: auto;
    }
}