:root {
    --navy: #172536;
    --navy-dark: #0d1722;
    --terracotta: #c66a4a;
    --terracotta-dark: #a95036;
    --sand: #d9b99b;
    --ivory: #f8f5ef;
    --cream: #eee6da;
    --white: #ffffff;
    --text: #27313a;
    --muted: #70777d;
    --border: rgba(23, 37, 54, 0.12);

    --heading-font: "Playfair Display", Georgia, serif;
    --body-font: "DM Sans", Arial, sans-serif;

    --container: 1180px;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(13, 23, 34, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 245, 239, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 17px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 21px;
    color: var(--navy);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav a:not(.nav-button):hover::after,
.nav a.active:not(.nav-button)::after {
    width: 100%;
}

.nav-button {
    padding: 12px 20px;
    background: var(--terracotta);
    color: var(--white) !important;
    border-radius: 30px;
    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    display: block;
    background: var(--navy);
    margin: 5px 0;
    transition: 0.3s;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 90% 15%, rgba(198, 106, 74, 0.16), transparent 25%),
        var(--ivory);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: -250px;
    border: 1px solid rgba(198, 106, 74, 0.25);
    border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(198, 106, 74, 0.18);
    border-radius: 50%;
}

.hero-pattern::before {
    inset: 80px;
}

.hero-pattern::after {
    inset: 160px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow span {
    width: 35px;
    height: 1px;
    background: var(--terracotta);
}

.hero h1 {
    max-width: 720px;
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--navy);
}

.hero h1 em {
    display: block;
    color: var(--terracotta);
    font-style: normal;
}

.hero-content > p {
    max-width: 600px;
    margin: 28px 0 34px;
    font-size: 17px;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(198, 106, 74, 0.25);
}

.btn-outline {
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    transform: translateY(-3px);
}


/* Hero Visual */

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.visual-card {
    position: relative;
    z-index: 3;
    width: min(100%, 430px);
    padding: 38px;
    background: var(--navy);
    color: var(--white);
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(13, 23, 34, 0.25);
    transform: rotate(2deg);
}

.visual-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visual-top > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 22px;
}

.visual-top small {
    display: block;
    color: var(--sand);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.visual-top strong {
    display: block;
    margin-top: 3px;
    font-size: 18px;
}

.visual-line {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 35px 0 25px;
}

.visual-info {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.visual-info:last-child {
    border-bottom: 0;
}

.visual-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--terracotta);
    color: var(--sand);
    border-radius: 50%;
    font-size: 12px;
}

.visual-info strong {
    font-size: 15px;
}

.visual-info p {
    margin-top: 2px;
    color: #b9c0c6;
    font-size: 12px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-one {
    width: 170px;
    height: 170px;
    background: var(--terracotta);
    top: 20px;
    right: 15px;
    opacity: 0.8;
}

.shape-two {
    width: 110px;
    height: 110px;
    background: var(--sand);
    bottom: 35px;
    left: 20px;
    opacity: 0.8;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 110px 0;
}

.section-label {
    display: block;
    margin-bottom: 17px;
    color: var(--terracotta);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.section-heading h2,
.center-heading h2,
.connection-content h2,
.enquiry-intro h2,
.address-label h2,
.contact-information h2,
.location-box h2 {
    font-family: var(--heading-font);
    color: var(--navy);
    font-weight: 600;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.15;
}

.section-heading h2 span,
.center-heading h2 span,
.connection-content h2 span,
.enquiry-intro h2 span,
.address-label h2 span,
.contact-information h2 span,
.location-box h2 span {
    display: block;
    color: var(--terracotta);
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.about-content {
    max-width: 650px;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 18px;
}

.about-content .large-text {
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 27px;
    line-height: 1.45;
}


/* =========================
   FOCUS
========================= */

.focus-section {
    background: var(--cream);
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.center-heading .section-label {
    text-align: center;
}

.center-heading p {
    color: var(--muted);
    margin-top: 20px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.focus-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    background: var(--ivory);
    border: 1px solid rgba(23, 37, 54, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.35s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.card-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 60px 0 25px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 21px;
}

.focus-card h3 {
    font-family: var(--heading-font);
    font-size: 23px;
    color: var(--navy);
    margin-bottom: 12px;
}

.focus-card p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   CONNECTION
========================= */

.connection-section {
    background: var(--navy);
    color: var(--white);
}

.connection-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.image-panel {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(198, 106, 74, 0.85), rgba(23, 37, 54, 0.8)),
        var(--terracotta);
    border-radius: 28px;
    overflow: hidden;
}

.image-panel::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
}

.image-panel::after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
}

.vertical-text {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
}

.panel-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.panel-center span {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 38px;
}

.panel-center strong {
    font-family: var(--heading-font);
    font-size: 30px;
}

.connection-content h2 {
    color: var(--white);
}

.connection-content h2 span {
    color: var(--sand);
}

.connection-content > .section-label {
    color: var(--sand);
}

.reason-list {
    margin-top: 42px;
}

.reason {
    display: flex;
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.reason-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--terracotta);
    border-radius: 50%;
    font-size: 12px;
}

.reason h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.reason p {
    color: #b8c0c7;
    font-size: 13px;
}


/* =========================
   ENQUIRY
========================= */

.enquiry-section {
    background: var(--ivory);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 80px;
}

.enquiry-intro > p {
    max-width: 470px;
    color: var(--muted);
    margin-top: 25px;
}

.contact-mini {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}

.contact-mini span,
.detail-item span,
.contact-detail span {
    display: block;
    color: var(--terracotta);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-mini a {
    font-weight: 600;
    color: var(--navy);
}

.form-card {
    padding: 42px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(23, 37, 54, 0.14);
    background: var(--ivory);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(198, 106, 74, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
    border: 0;
}

.form-message {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   ADDRESS
========================= */

.address-section {
    padding: 80px 0;
    background: var(--sand);
}

.address-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.address-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.detail-item p {
    color: var(--navy);
    font-weight: 600;
}

.detail-item a:hover {
    color: var(--terracotta-dark);
}


/* =========================
   INNER HERO
========================= */

.inner-hero {
    padding: 130px 0 110px;
    background:
        radial-gradient(circle at 90% 20%, rgba(198,106,74,0.18), transparent 28%),
        var(--cream);
}

.inner-hero h1 {
    max-width: 800px;
    font-family: var(--heading-font);
    color: var(--navy);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.08;
}

.inner-hero h1 span {
    color: var(--terracotta);
}

.inner-hero p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--muted);
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.contact-information > p {
    max-width: 520px;
    color: var(--muted);
    margin-top: 22px;
}

.contact-details {
    margin-top: 45px;
    display: grid;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
}

.contact-detail p {
    color: var(--text);
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--terracotta);
}

.map-button {
    display: inline-flex;
    margin-top: 40px;
    color: var(--terracotta);
    font-weight: 700;
}


/* =========================
   LOCATION
========================= */

.location-section {
    padding: 90px 0;
    background: var(--terracotta);
}

.location-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.location-box .section-label {
    color: var(--sand);
}

.location-box h2 {
    color: var(--white);
}

.location-box h2 span {
    color: var(--navy);
}

.location-box p {
    margin-top: 20px;
    color: rgba(255,255,255,0.85);
}


/* =========================
   LEGAL
========================= */

.legal-section {
    background: var(--white);
}

.legal-content {
    max-width: 900px;
}

.legal-updated {
    display: inline-block;
    margin-bottom: 40px;
    padding: 8px 14px;
    background: var(--cream);
    color: var(--muted);
    border-radius: 30px;
    font-size: 12px;
}

.legal-content h2 {
    margin: 40px 0 12px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 27px;
}

.legal-content p {
    color: var(--muted);
    margin-bottom: 14px;
}

.legal-contact {
    margin-top: 25px;
    padding: 28px;
    background: var(--ivory);
    border-left: 4px solid var(--terracotta);
    border-radius: 8px;
}

.legal-contact strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 22px;
}

.legal-contact a {
    color: var(--terracotta);
    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: var(--navy-dark);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 75px 0;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-mark {
    background: var(--terracotta);
}

.footer-brand p {
    max-width: 350px;
    margin-top: 22px;
    color: #aab4bc;
    font-size: 13px;
}

.footer-main h3 {
    margin-bottom: 20px;
    color: var(--sand);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: #c3cbd1;
    font-size: 13px;
    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--terracotta);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #89949d;
    font-size: 11px;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero-grid,
    .about-grid,
    .connection-grid,
    .enquiry-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 450px;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 760px) {

    .nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 5%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav a {
        padding: 14px 5px;
    }

    .nav-button {
        text-align: center;
        margin: 8px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .hero-visual {
        min-height: 400px;
    }

    .visual-card {
        padding: 28px;
    }

    .section {
        padding: 80px 0;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-card {
        padding: 25px;
    }

    .address-details {
        grid-template-columns: 1fr;
    }

    .image-panel {
        min-height: 430px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }

    .location-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {

    .nav-container {
        min-height: 72px;
    }

    .nav {
        top: 72px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .visual-card {
        width: 95%;
        padding: 22px;
    }

    .visual-info {
        gap: 10px;
    }

    .inner-hero {
        padding: 90px 0 75px;
    }

}