/* =========================================================
   EDU NEST — main stylesheet
   Brand: #E5873C (primary), #DC9844 (primary-light),
          #000 (text), #E5E6E7 (grey), #fff (surface)
   ========================================================= */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* Reserve scrollbar space so locking body scroll (mobile menu open)
       doesn't cause a horizontal layout jump. */
    scrollbar-gutter: stable;
}
body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea, button { font: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.01em;
}
p { color: var(--ink-muted); }
ul { padding: 0; list-style: none; }

/* ---------- Design tokens ---------- */
:root {
    --primary:        #E5873C;
    --primary-light:  #DC9844;
    --primary-dark:   #C36F25;
    --ink:            #0d0d0d;
    --ink-soft:       #1f1f1f;
    --ink-muted:      #4a4a4a;
    --ink-faint:      #6b6b6b;
    --grey:           #E5E6E7;
    --grey-soft:      #f3f4f5;
    --bg:             #ffffff;
    --surface:        #ffffff;
    --line:           #e8e8e9;
    --shadow-sm:      0 1px 2px rgba(0,0,0,.05);
    --shadow:         0 4px 16px rgba(0,0,0,.06);
    --shadow-lg:      0 20px 50px rgba(0,0,0,.10);
    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      22px;
    --container:      1200px;
    --gutter:         clamp(1rem, 3vw, 2rem);
    --section:        clamp(3.5rem, 7vw, 6rem);
    --ease:           cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--grey { background: var(--grey-soft); }
.section--dark { background: #0d0d0d; color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-head {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: ""; display: inline-block; width: 22px; height: 2px;
    background: var(--primary); vertical-align: middle; margin-right: 10px;
}
.eyebrow::after {
    content: ""; display: inline-block; width: 22px; height: 2px;
    background: var(--primary); vertical-align: middle; margin-left: 10px;
}
.section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
}
.section-head p {
    font-size: clamp(1rem, 1.4vw, 1.075rem);
    color: var(--ink-muted);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .98rem;
    letter-spacing: .005em;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(229,135,60,.32);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(229,135,60,.42); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Top contact bar ---------- */
.topbar {
    background: #0d0d0d;
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 6px 14px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.86); }
.topbar a.topbar__item { transition: color .2s; }
.topbar a.topbar__item:hover { color: var(--primary-light); }
.topbar__sep { color: rgba(255,255,255,.3); }
@media (max-width: 720px) {
    .topbar { font-size: 12px; }
    .topbar__sep { display: none; }
}

/* ---------- Brand / Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding-block: 14px;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
    width: 52px; height: 52px;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: .02em;
}
.brand__name span { color: var(--primary); }
.brand__sub {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 2px;
}

.primary-nav ul {
    display: flex; align-items: center; gap: 6px;
}
.nav-link {
    display: inline-block;
    padding: 9px 14px;
    font-weight: 500;
    font-size: .98rem;
    color: var(--ink-soft);
    border-radius: 8px;
    position: relative;
    transition: color .2s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.is-active { color: var(--primary); font-weight: 600; }
.nav-link.is-active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 2px; background: var(--primary); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--grey-soft);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only inner header + footer (hidden on desktop) */
.primary-nav__head,
.primary-nav__foot { display: none; }

@media (max-width: 960px) {
    .nav-toggle { display: flex; }

    /*
     * CRITICAL: backdrop-filter on .site-header creates a containing block
     * for fixed-positioned descendants. That clips .primary-nav to the
     * header's box. Disable it on mobile so the menu fills the viewport.
     */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
    }

    /* Full-viewport slide-in panel */
    .primary-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0; left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* dynamic viewport — accounts for mobile browser chrome */
        background: #fff;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        display: flex;
        flex-direction: column;
        z-index: 70;
        -webkit-overflow-scrolling: touch;
    }
    .primary-nav.is-open { transform: translateX(0); }

    /* Inner header: brand + close button — pinned top */
    .primary-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px var(--gutter);
        border-bottom: 1px solid var(--line);
        background: #fff;
        flex-shrink: 0;
    }
    .primary-nav__title {
        display: inline-flex; align-items: center; gap: 10px;
        font-weight: 700;
        font-size: 1rem;
        color: var(--ink);
        letter-spacing: .02em;
    }
    .primary-nav__title img {
        width: 34px; height: 34px;
        border-radius: 9px;
        object-fit: cover;
    }
    .primary-nav__close {
        width: 42px; height: 42px;
        border-radius: 10px;
        background: var(--grey-soft);
        color: var(--ink);
        display: flex; align-items: center; justify-content: center;
        transition: background .2s, color .2s;
    }
    .primary-nav__close:hover,
    .primary-nav__close:active { background: var(--primary); color: #fff; }

    /* Menu list — fills available space, scrolls only if absolutely needed */
    .primary-nav ul {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px var(--gutter);
        margin: 0;
        overflow-y: auto;
    }
    .primary-nav .nav-link {
        display: flex;
        align-items: center;
        padding: 13px 14px;
        font-size: 1.02rem;
        font-weight: 600;
        color: var(--ink);
        border-radius: 12px;
        background: transparent;
        transition: background .2s, color .2s;
    }
    .primary-nav .nav-link::after { content: none !important; }
    .primary-nav .nav-link:hover,
    .primary-nav .nav-link:active { background: var(--grey-soft); color: var(--primary); }
    .primary-nav .nav-link.is-active {
        background: rgba(229,135,60,.10);
        color: var(--primary);
    }
    .primary-nav .nav-link.is-active::before {
        content: "";
        display: inline-block;
        width: 4px; height: 20px;
        background: var(--primary);
        border-radius: 2px;
        margin-right: 12px;
    }
    .nav-cta {
        margin: 8px var(--gutter) 4px !important;
        padding: 14px 24px !important;
        font-size: .98rem;
        justify-content: center;
    }

    /* Bottom quick-contact strip — pinned bottom */
    .primary-nav__foot {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px var(--gutter) max(14px, env(safe-area-inset-bottom));
        border-top: 1px solid var(--line);
        background: var(--grey-soft);
        flex-shrink: 0;
    }
    .primary-nav__contact {
        display: flex; align-items: center; gap: 10px;
        padding: 10px 12px;
        background: #fff;
        border-radius: 12px;
        color: var(--ink);
        transition: transform .2s, box-shadow .2s;
        box-shadow: var(--shadow-sm);
        min-width: 0;
    }
    .primary-nav__contact:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
    .primary-nav__contact svg { color: var(--primary); flex-shrink: 0; }
    .primary-nav__contact small {
        display: block;
        font-size: .66rem;
        color: var(--ink-faint);
        text-transform: uppercase;
        letter-spacing: .12em;
        line-height: 1.1;
    }
    .primary-nav__contact strong {
        display: block;
        font-size: .8rem;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.2;
        word-break: break-word;
    }

    /* On small phones, stack the contact tiles vertically */
    @media (max-width: 380px) {
        .primary-nav__foot { grid-template-columns: 1fr; }
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 90% 10%, rgba(229,135,60,.10), transparent 55%),
        radial-gradient(circle at 5% 90%, rgba(229,135,60,.07), transparent 60%),
        #fff;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px 7px 7px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px; font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.hero__pill span {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1.07;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--primary); }
.hero__lead {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--ink-muted);
    max-width: 540px;
    margin-bottom: 28px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero__stats {
    display: flex; gap: 32px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    flex-wrap: wrap;
}
.hero__stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.hero__stat strong span { color: var(--primary); }
.hero__stat small { color: var(--ink-faint); font-size: .85rem; }

.hero__media {
    position: relative;
    aspect-ratio: 4 / 4.5;
}
.hero__media img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero__media::after {
    content: ""; position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.hero__badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: #fff;
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
}
.hero__badge-icon {
    width: 46px; height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.hero__badge strong { font-size: 1.1rem; display: block; }
.hero__badge small { color: var(--ink-faint); font-size: .82rem; }

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero__media { max-width: 460px; margin: 0 auto; aspect-ratio: 4/4; }
    .hero__badge { left: 0; }
}

/* ---------- USP strip ---------- */
.usp-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}
.usp-card {
    background: #fff;
    padding: 28px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    display: flex; flex-direction: column; gap: 8px;
}
.usp-card__icon {
    width: 52px; height: 52px;
    background: rgba(229,135,60,.12);
    color: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}
.usp-card h3 { font-size: 1.15rem; }
.usp-card p { font-size: .95rem; color: var(--ink-muted); }
@media (max-width: 800px) {
    .usp-strip { grid-template-columns: 1fr; margin-top: 0; }
}

/* ---------- About preview ---------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.about-split--reverse { grid-template-columns: 1.05fr 1fr; }
.about-split__media { position: relative; }
.about-split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 5/4; object-fit: cover; }
.about-split__media::before {
    content: ""; position: absolute;
    width: 60%; height: 60%; right: -20px; bottom: -20px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: .12;
}
.about-split h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.about-split p + p { margin-top: 12px; }
.about-split__list { margin-top: 22px; display: grid; gap: 12px; }
.about-split__list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-weight: 500; color: var(--ink-soft);
}
.about-split__list svg {
    flex: 0 0 22px; width: 22px; height: 22px;
    color: var(--primary);
    margin-top: 2px;
}
@media (max-width: 900px) {
    .about-split, .about-split--reverse { grid-template-columns: 1fr; }
}

/* ---------- Amenity grid ---------- */
.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}
.amenity {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(229,135,60,.4);
}
.amenity__icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    background: rgba(229,135,60,.10);
    color: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.amenity:hover .amenity__icon { background: var(--primary); color: #fff; }
.amenity h4 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -.005em;
}

/* ---------- Categories ---------- */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.category {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    color: #fff;
    background: #0d0d0d;
    isolation: isolate;
    transition: transform .35s var(--ease);
}
.category:hover { transform: translateY(-6px); }
.category img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
    z-index: 0;
}
.category:hover img { transform: scale(1.07); }
.category::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.85) 100%);
    z-index: 1;
}
.category__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 24px;
    z-index: 2;
}
.category__num {
    display: inline-block;
    font-size: .8rem; font-weight: 700;
    color: var(--primary);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 4px 10px; border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: .12em;
}
.category h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.category p { color: rgba(255,255,255,.82); font-size: .92rem; }
@media (max-width: 960px) { .categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .categories { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    position: relative;
    display: flex; flex-direction: column;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial__quote {
    font-size: 60px; line-height: .8; color: var(--primary);
    font-family: Georgia, serif; opacity: .35;
    margin-bottom: 8px;
}
.testimonial p {
    font-size: 1rem; color: var(--ink-soft); flex: 1; margin-bottom: 18px;
}
.testimonial__author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--line); padding-top: 16px;
}
.testimonial__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.testimonial__name { font-weight: 700; color: var(--ink); }
.testimonial__role { font-size: .82rem; color: var(--ink-faint); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(229,135,60,.95), rgba(220,152,68,.95)),
        url('../../images-for-website/2..jpeg') center/cover;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.92); max-width: 600px; margin: 0 auto 26px; }
.cta-banner .btn--primary { background: #fff; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta-banner .btn--primary:hover { background: #0d0d0d; color: #fff; }
.cta-banner .btn--ghost { border-color: rgba(255,255,255,.6); }
.cta-banner .ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #111 0%, #1d1d1d 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(229,135,60,.30), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(229,135,60,.18), transparent 55%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto; }
.breadcrumb {
    margin-top: 22px;
    font-size: .9rem;
    color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { color: var(--primary-light); }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(229,135,60,.6) 100%);
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 800px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
}

/* ---------- Contact page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}
.contact-info {
    background: #0d0d0d;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.5rem);
}
.contact-info h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.contact-info > p { color: rgba(255,255,255,.78); margin-bottom: 30px; }
.contact-info__list { display: flex; flex-direction: column; gap: 20px; }
.contact-info__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
    width: 44px; height: 44px;
    background: var(--primary); color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info__list small { display: block; color: rgba(255,255,255,.6); text-transform: uppercase; font-size: .72rem; letter-spacing: .15em; margin-bottom: 2px; }
.contact-info__list strong, .contact-info__list a { color: #fff; font-weight: 600; }
.contact-info__list a:hover { color: var(--primary-light); }
.contact-info__hours {
    margin-top: 30px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .92rem; color: rgba(255,255,255,.78);
}

.contact-form-wrap {
    background: #fff;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 10px; }
.contact-form-wrap > p { margin-bottom: 24px; color: var(--ink-muted); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.map-wrap {
    margin-top: var(--section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Form fields ---------- */
.field { display: block; margin-bottom: 16px; }
.field > span {
    display: block;
    font-size: .88rem; font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.field > span small { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(229,135,60,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.hp-field {
    position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.form-status {
    margin-top: 14px;
    font-size: .9rem;
    min-height: 1.4em;
}
.form-status.is-success { color: #1f7a3a; font-weight: 600; }
.form-status.is-error { color: #b3261e; font-weight: 600; }
.form-disclaimer {
    margin-top: 14px;
    font-size: .78rem;
    color: var(--ink-faint);
}

/* ---------- Floating Enquiry ---------- */
.enquiry-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 90;
    background: var(--primary);
    color: #fff;
    padding: 16px 12px;
    border-radius: 14px 0 0 14px;
    box-shadow: -6px 6px 18px rgba(229,135,60,.32);
    display: flex; flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}
.enquiry-tab__label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}
.enquiry-tab:hover { background: var(--primary-dark); transform: translateY(-50%) translateX(-3px); }

.enquiry-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 100;
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
}
.enquiry-backdrop.is-open { opacity: 1; pointer-events: auto; }

.enquiry-panel {
    position: fixed;
    top: 0; right: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 101;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,.18);
}
.enquiry-panel.is-open { transform: translateX(0); }
.enquiry-panel__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
}
.enquiry-panel__header h3 { color: #fff; font-size: 1.2rem; }
.enquiry-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.enquiry-close:hover { background: rgba(255,255,255,.32); }

.enquiry-panel__contact {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--grey-soft);
    display: flex; flex-direction: column; gap: 12px;
}
.enquiry-contact {
    display: flex; align-items: center; gap: 12px;
    color: var(--ink);
    transition: color .2s;
}
.enquiry-contact:hover { color: var(--primary); }
.enquiry-contact--static { cursor: default; }
.enquiry-contact__icon {
    width: 38px; height: 38px;
    background: #fff;
    color: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.enquiry-contact small { display: block; font-size: .7rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .12em; }
.enquiry-contact strong { font-size: .92rem; font-weight: 600; }

.enquiry-form {
    padding: 20px 24px 32px;
    flex: 1;
}
.enquiry-form__intro {
    font-size: .9rem;
    margin-bottom: 16px;
    color: var(--ink-muted);
}

@media (max-width: 480px) {
    .enquiry-tab { padding: 14px 10px; font-size: .78rem; }
    .enquiry-panel { width: 100%; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,.78);
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
    margin-top: var(--section);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
    gap: 36px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 14px; max-width: 340px; color: rgba(255,255,255,.65); font-size: .95rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); transition: color .2s; font-size: .94rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-links--contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.7); font-size: .94rem; }
.footer-links--contact svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-map {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
    max-width: 130px;
}
.footer-map img { width: 100%; }
.footer-map-caption { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 10px; }
.footer-bottom {
    padding: 22px 0;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
    font-size: .85rem; color: rgba(255,255,255,.55);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Terms / content page ---------- */
.content-page {
    padding-block: var(--section);
}
.content-page__body {
    max-width: 820px; margin: 0 auto;
}
.content-page__body h2 {
    margin-top: 2.2rem; margin-bottom: 1rem;
    font-size: 1.4rem;
    padding-bottom: 8px; border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.content-page__body ol { padding-left: 22px; color: var(--ink-muted); }
.content-page__body ol li { margin-bottom: 14px; padding-left: 6px; }
.content-page__body p { margin-bottom: 14px; }
.content-page__note {
    background: var(--grey-soft);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    color: var(--ink-soft);
    font-size: .95rem;
    margin-block: 22px;
}

/* ---------- Animation on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
