:root {
    --bg: #fff8ec;
    --bg-soft: #f8e5c4;
    --panel: rgba(255, 250, 239, 0.8);
    --panel-strong: rgba(255, 246, 228, 0.96);
    --gold: #b97818;
    --gold-strong: #d9a139;
    --gold-soft: #fff0bd;
    --maroon: #7d1d31;
    --maroon-soft: #b73b4f;
    --navy: #17509d;
    --ink: #2d1f27;
    --muted: #765f69;
    --line: rgba(170, 112, 40, 0.2);
    --shadow: 0 24px 58px rgba(121, 75, 37, 0.18);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 221, 146, 0.62), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(218, 233, 255, 0.8), transparent 24%),
        linear-gradient(145deg, #fffaf0 0%, #f8e5c4 45%, #e9f1ff 100%);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(126, 29, 49, 0.05) 0, rgba(126, 29, 49, 0.05) 1px, transparent 1px, transparent 120px),
        linear-gradient(rgba(185, 120, 24, 0.06) 0, rgba(185, 120, 24, 0.06) 1px, transparent 1px, transparent 120px);
    mask-image: radial-gradient(circle at center, rgba(45, 31, 39, 0.45), transparent 74%);
    pointer-events: none;
}

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

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

.page-shell {
    position: relative;
    isolation: isolate;
}

.spotlight,
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.spotlight-left {
    background: linear-gradient(115deg, rgba(255, 226, 166, 0.48), transparent 42%);
}

.spotlight-right {
    background: linear-gradient(245deg, rgba(207, 225, 255, 0.62), transparent 44%);
}

.grain-overlay {
    opacity: 0.2;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(126, 29, 49, 0.03) 25%, transparent 26%),
        linear-gradient(90deg, transparent 24%, rgba(126, 29, 49, 0.03) 25%, transparent 26%);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
}

.site-header,
.hero,
.section {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0 0;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(22px);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(179, 119, 37, 0.16);
    background: rgba(255, 250, 241, 0.96);
    z-index: -1;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 18px 48px rgba(128, 82, 38, 0.12);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
}

.brand-mark__logo {
    width: 116px;
    height: 64px;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(185, 120, 24, 0.34);
    background: #fffdf8;
    box-shadow: 0 8px 24px rgba(128, 76, 31, 0.16);
}

.brand-mark__text,
.site-nav a,
.eyebrow,
.button,
.service-card__index,
.marquee-card__label {
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-mark__text,
.site-nav a,
.eyebrow,
h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
}

.brand-mark__text {
    color: #4b1d32;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-nav {
    display: flex;
    gap: 1.2rem;
    padding: 0.85rem 1rem;
}

.site-nav a {
    font-size: 0.88rem;
    color: #5f3445;
    font-weight: 700;
    transition: color 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--maroon);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: center;
    min-height: calc(100vh - 5rem);
    padding: 4.2rem 0 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 1.2rem;
    height: 16px;
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg, rgba(126, 29, 49, 0.34) 0 18px, transparent 18px 34px),
        linear-gradient(90deg, rgba(217, 161, 57, 0.28), rgba(23, 80, 157, 0.18), rgba(217, 161, 57, 0.28));
    opacity: 0.65;
    animation: filmDrift 18s linear infinite;
    pointer-events: none;
}

.hero__backdrop {
    position: absolute;
    inset: 5% -3%;
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(255, 251, 241, 0.86), rgba(253, 229, 184, 0.54) 44%, rgba(227, 237, 255, 0.72) 100%),
        linear-gradient(90deg, rgba(185, 120, 24, 0.08), rgba(23, 80, 157, 0.1));
    border: 1px solid rgba(185, 120, 24, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 32px 80px rgba(112, 75, 39, 0.16);
    z-index: -1;
}

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

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.72rem 1.05rem 0.72rem 0.8rem;
    border: 1px solid rgba(126, 29, 49, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 44px rgba(121, 75, 37, 0.16);
}

.hero-brand__logo {
    width: 132px;
    height: 74px;
    object-fit: contain;
    border-radius: 12px;
    background: #fffdf8;
    border: 1px solid rgba(185, 120, 24, 0.32);
}

.hero-brand span {
    color: #5d1529;
    font-family: 'Cinzel', serif;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.76rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: 4.25rem;
    line-height: 1;
    margin-bottom: 1.35rem;
    max-width: 12ch;
    text-wrap: balance;
    color: #5a1730;
    font-weight: 800;
    text-shadow: 0 3px 0 rgba(255, 255, 255, 0.78), 0 16px 38px rgba(126, 29, 49, 0.16);
}

h2 {
    font-size: 3rem;
    line-height: 1.08;
    max-width: 15ch;
    margin-bottom: 0;
    color: #432837;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.hero__lead {
    max-width: 62ch;
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
    transform: translateX(-160%);
    transition: transform 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(160%);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button--primary {
    color: #3c2609;
    background: linear-gradient(135deg, #fff1bc, var(--gold-strong));
    box-shadow: 0 16px 35px rgba(185, 120, 24, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 20px 42px rgba(185, 120, 24, 0.32);
}

.button--ghost {
    border: 1px solid rgba(126, 29, 49, 0.22);
    background: rgba(255, 255, 255, 0.42);
    color: var(--maroon);
}

.button--full {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.glass-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 242, 220, 0.52)),
        var(--panel);
    border: 1px solid rgba(185, 120, 24, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

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

.stat-card {
    border-radius: var(--radius-md);
    padding: 1.15rem;
}

.stat-card strong {
    display: block;
    color: var(--maroon);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero__visual {
    position: relative;
    align-self: center;
    justify-self: end;
    width: min(100%, 560px);
}

.logo-stage {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 245, 223, 0.94), rgba(227, 237, 255, 0.76)),
        linear-gradient(90deg, rgba(185, 120, 24, 0.12), rgba(126, 29, 49, 0.1));
    border: 1px solid rgba(185, 120, 24, 0.2);
    transform: perspective(1600px) rotateY(-9deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 0 32px 60px rgba(99, 71, 44, 0.2);
}

.logo-stage__rings {
    position: absolute;
    inset: 6%;
    border-radius: 26px;
    border: 1px solid rgba(185, 120, 24, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.42),
        0 0 40px rgba(185, 120, 24, 0.12);
}

.logo-stage__image {
    position: relative;
    width: 100%;
    border-radius: 24px;
    border: 2px solid rgba(255, 248, 232, 0.82);
    box-shadow: 0 22px 35px rgba(109, 77, 43, 0.2);
    z-index: 1;
}

.marquee-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 360px;
    margin: 1rem 0 0 auto;
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-lg);
}

.marquee-card__label {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--maroon);
    margin-bottom: 0.7rem;
}

.section {
    padding: 3rem 0;
    scroll-margin-top: 7rem;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 1.5rem;
}

.about-card,
.film-strip,
.service-card,
.trust-card,
.form-shell {
    border-radius: var(--radius-xl);
}

.about-card {
    padding: 2rem;
}

.film-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 246, 226, 0.94), rgba(246, 221, 181, 0.88)),
        linear-gradient(90deg, rgba(126, 29, 49, 0.1), rgba(23, 80, 157, 0.12));
    border: 1px solid rgba(185, 120, 24, 0.24);
    box-shadow: var(--shadow);
}

.film-strip__frame {
    min-height: 150px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(185, 120, 24, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 252, 244, 0.72), rgba(255, 231, 190, 0.44)),
        linear-gradient(135deg, rgba(23, 80, 157, 0.12), rgba(126, 29, 49, 0.08));
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.film-strip__frame::before,
.film-strip__frame::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    height: 12px;
    background-image: linear-gradient(90deg, rgba(185, 120, 24, 0.78) 0 18px, transparent 18px 34px);
    background-size: 34px 100%;
}

.film-strip__frame::before {
    top: 10px;
}

.film-strip__frame::after {
    bottom: 10px;
}

.film-strip__frame span {
    color: var(--maroon);
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.service-grid,
.trust-grid {
    display: grid;
    gap: 1.2rem;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    min-height: 240px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 250ms ease, border-color 250ms ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(150deg, rgba(255, 241, 205, 0.72), rgba(232, 239, 255, 0.62)),
        linear-gradient(155deg, rgba(126, 29, 49, 0.1), rgba(23, 80, 157, 0.08));
}

.service-card:hover {
    border-color: rgba(126, 29, 49, 0.26);
    box-shadow: 0 26px 60px rgba(121, 75, 37, 0.22);
}

.service-card__index {
    display: inline-flex;
    margin-bottom: 4rem;
    color: var(--maroon);
    font-size: 0.76rem;
}

.service-card h3 {
    position: relative;
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 0;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
    padding: 1.6rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-copy {
    padding-right: 1rem;
}

.contact-points {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-point {
    padding: 1rem 1.2rem;
    border-left: 2px solid rgba(185, 120, 24, 0.38);
    background: rgba(255, 255, 255, 0.46);
    border-radius: 0 18px 18px 0;
}

.contact-point strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Cinzel', serif;
    color: var(--maroon);
}

.contact-point span {
    color: var(--muted);
    line-height: 1.6;
}

.form-shell {
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 237, 204, 0.54)),
        var(--panel-strong);
}

.enquiry-form {
    display: grid;
    gap: 1.25rem;
}

.alert {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert--success {
    background: rgba(58, 139, 94, 0.12);
    border: 1px solid rgba(58, 139, 94, 0.24);
    color: #24563b;
}

.alert--error {
    background: rgba(126, 29, 49, 0.1);
    border: 1px solid rgba(126, 29, 49, 0.24);
    color: var(--maroon);
}

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

.field {
    display: grid;
    gap: 0.5rem;
}

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

.field span {
    color: var(--maroon);
    font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(126, 29, 49, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    padding: 0.95rem 1rem;
    font: inherit;
    outline: none;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field select {
    color: var(--ink);
    cursor: pointer;
}

.field select option {
    background: #fff8ec;
    color: var(--ink);
}

.field select option:checked {
    background: var(--gold-strong);
    color: #3c2609;
}

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

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(118, 95, 105, 0.62);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(255, 224, 136, 0.42);
    box-shadow: 0 0 0 4px rgba(217, 161, 57, 0.16);
    background: rgba(255, 255, 255, 0.86);
}

.field small {
    color: var(--maroon);
    line-height: 1.4;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes filmDrift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 260px 0, 0 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .logo-stage,
    .service-card {
        transform: none !important;
    }
}

@media (max-width: 1100px) {
    .hero,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: auto;
        padding-top: 4.5rem;
    }

    .hero__visual {
        max-width: 720px;
        justify-self: start;
    }
}

@media (max-width: 780px) {
    .site-header {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.75rem;
        align-items: stretch;
    }

    .brand-mark {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .brand-mark__logo {
        width: 96px;
        height: 54px;
    }

    .brand-mark__text {
        font-size: 1rem;
    }

    .site-nav {
        gap: 0.8rem;
        padding-top: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__stats,
    .service-grid,
    .trust-grid,
    .form-grid,
    .film-strip {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.5rem;
    }

    h1 {
        font-size: 3rem;
        max-width: none;
    }

    h2 {
        font-size: 2.25rem;
    }

    .logo-stage {
        transform: none;
    }

    .hero-brand {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .hero-brand__logo {
        width: 104px;
        height: 58px;
    }

    .hero-brand span {
        font-size: 1rem;
    }

    .marquee-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        max-width: none;
    }

    .section {
        padding: 2.4rem 0;
    }
}

@media (max-width: 480px) {
    .brand-mark {
        gap: 0.65rem;
    }

    .brand-mark__logo {
        width: 88px;
        height: 50px;
    }

    .brand-mark__text {
        font-size: 0.92rem;
    }

    .hero-brand {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 2rem;
    }

    .button {
        width: 100%;
    }
}
