:root {
    color-scheme: dark;
    --background: #090b0d;
    --surface: #111519;
    --surface-raised: #171c21;
    --border: rgba(255, 255, 255, 0.1);
    --text: #f5f6f7;
    --muted: #b7bec5;
    --accent: #f3aa33;
    --accent-light: #ffd188;
    --accent-soft: rgba(243, 170, 51, 0.12);
    --success: #7fcaa2;
    --error: #ff9a91;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at 12% 4%, rgba(243, 170, 51, 0.1), transparent 30rem),
        radial-gradient(circle at 92% 42%, rgba(243, 170, 51, 0.04), transparent 28rem),
        var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

a {
    color: var(--accent);
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 11, 13, 0.92);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 4.75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 750;
}

.brand img {
    width: 2.65rem;
    height: 2.65rem;
    object-fit: contain;
}

.brand span {
    color: var(--accent);
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.55rem 0.8rem;
    border-radius: 0.55rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
    background: var(--accent-soft);
}

.contact-hero {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: clamp(3.75rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.hero-copy-block {
    max-width: 850px;
}

.eyebrow,
.section-label {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.75rem, 6.8vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span {
    color: var(--accent);
}

.hero-copy {
    max-width: 720px;
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-note {
    flex: 0 0 255px;
    margin-bottom: 0.3rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: rgba(17, 21, 25, 0.75);
}

.status-dot {
    flex: 0 0 auto;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.42rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(127, 202, 162, 0.11);
}

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

.hero-note strong {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.hero-note div > span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.contact-layout {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-details,
.form-panel {
    padding: clamp(1.6rem, 4vw, 3.25rem);
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(150deg, rgba(243, 170, 51, 0.08), transparent 48%),
        #0d1114;
}

.contact-details h2,
.form-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.details-intro,
.form-heading > p:last-child {
    margin: 1rem 0 0;
    color: var(--muted);
}

.contact-methods {
    display: grid;
    gap: 0.7rem;
}

.contact-method {
    min-width: 0;
    padding: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: var(--text);
    text-decoration: none;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

a.contact-method:hover {
    border-color: rgba(243, 170, 51, 0.28);
    background: var(--accent-soft);
    color: var(--text);
    transform: translateX(0.2rem);
}

.method-icon {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 170, 51, 0.2);
    border-radius: 0.65rem;
    color: var(--accent);
    background: var(--accent-soft);
}

.method-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.contact-method small {
    margin-bottom: 0.05rem;
    color: var(--muted);
    font-size: 0.74rem;
}

.contact-method strong {
    overflow-wrap: anywhere;
    font-size: 0.92rem;
}

.enquiry-note {
    padding: 1.15rem 1.2rem;
    border-left: 3px solid var(--accent);
    border-radius: 0 0.7rem 0.7rem 0;
    background: var(--accent-soft);
}

.enquiry-note strong {
    font-size: 0.88rem;
}

.enquiry-note p {
    margin: 0.35rem 0 0;
    color: #d1c8b9;
    font-size: 0.82rem;
}

.form-panel {
    background: linear-gradient(145deg, rgba(23, 28, 33, 0.98), rgba(14, 17, 20, 0.98));
}

.form-heading {
    margin-bottom: 2rem;
}

.form-heading > p:last-child {
    font-size: 0.84rem;
}

.notification {
    margin: 0 0 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid;
    border-radius: 0.7rem;
    font-size: 0.9rem;
}

.notification.success {
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    border-color: rgba(127, 202, 162, 0.4);
    color: #c6f1d9;
    background:
        linear-gradient(135deg, rgba(127, 202, 162, 0.13), rgba(243, 170, 51, 0.05)),
        rgba(9, 18, 14, 0.7);
}

.notification-icon {
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #102219;
    background: var(--success);
    font-size: 1rem;
    font-weight: 900;
}

.notification.success strong {
    display: block;
    color: #e7f9ee;
    font-size: 1rem;
    line-height: 1.4;
}

.notification.success p {
    margin: 0.4rem 0 0.65rem;
    color: #c1d5ca;
    font-size: 0.86rem;
    line-height: 1.6;
}

.notification.success a {
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
}

.notification.success a:hover {
    text-decoration: underline;
}

.notification.error {
    border-color: rgba(255, 154, 145, 0.4);
    color: #ffd1cd;
    background: rgba(255, 154, 145, 0.08);
}

.contact-form {
    display: grid;
    gap: 1.35rem;
}

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

.field label,
.label-row label {
    display: block;
    margin: 0 0 0.45rem;
    color: #e8ebed;
    font-size: 0.82rem;
    font-weight: 700;
}

.optional {
    margin-left: 0.3rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 500;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.label-row > span {
    color: var(--muted);
    font-size: 0.68rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: rgba(7, 10, 12, 0.65);
    color: var(--text);
    font: inherit;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input {
    min-height: 3.2rem;
    padding: 0.7rem 0.9rem;
}

textarea {
    min-height: 10rem;
    padding: 0.85rem 0.9rem;
    resize: vertical;
}

input:hover,
textarea:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

input:focus,
textarea:focus {
    border-color: rgba(243, 170, 51, 0.7);
    background: rgba(7, 10, 12, 0.9);
    box-shadow: 0 0 0 4px rgba(243, 170, 51, 0.08);
}

.form-footer {
    padding-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.form-footer p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.form-footer button {
    min-width: 10.6rem;
    min-height: 3.15rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--accent);
    border-radius: 0.65rem;
    color: #17100a;
    background: var(--accent);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-footer button:hover {
    background: var(--accent-light);
    box-shadow: 0 9px 26px rgba(243, 170, 51, 0.18);
    transform: translateY(-2px);
}

.form-footer button span {
    margin-left: 0.35rem;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

footer {
    border-top: 1px solid var(--border);
    background: #07090a;
}

.footer-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .contact-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-note {
        flex-basis: auto;
    }

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

    .contact-details {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .contact-methods {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 680px) {
    .nav-shell {
        padding: 0.7rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav a {
        padding: 0.45rem 0.6rem;
        white-space: nowrap;
    }

    .contact-hero {
        padding-top: 3.25rem;
        gap: 2rem;
    }

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

    .contact-methods,
    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-method {
        align-items: center;
        flex-direction: row;
    }

    .form-footer,
    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-footer button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
