﻿/* ══════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky: #7BB8E0;
    --sky-d: #5AA0CC;
    --sky-dd: #3D87B8;
    --sky-l: #A8D0EE;
    --sky-pale: #C8E4F5;
    --sky-mist: #EBF6FD;
    --sky-ultra: #F4FAFF;
    --white: #FFFFFF;
    --text: #1C3A52;
    --text-mid: #4A6A82;
    --text-light: #7A9AB2;
    --border: rgba(123,184,224,0.2);
    --shadow-sm: 0 2px 12px rgba(123,184,224,0.12);
    --shadow-md: 0 8px 32px rgba(123,184,224,0.18);
    --shadow-lg: 0 20px 60px rgba(123,184,224,0.22);
    --nav-h: 72px;
}

/* Wrapper */
.ft-visit-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

/* Location block */
.ft-row {
    position: relative !important;
    display: block !important;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    transition: .25s;
    overflow: hidden;
}

    .ft-row:hover {
        background: rgba(255,255,255,0.12);
        transform: translateX(4px);
    }

/* text container */
.ft-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* icons + text */
.ft-loc, .ft-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-mini-btn {
    position: absolute !important;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white) !important;
    text-decoration: none;
    z-index: 5;
    transition: all .25s ease;
    backdrop-filter: blur(10px);
    font-size: 14px;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

    /* ICON PERFECT CENTER */
    .ft-mini-btn i {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    /* SOFT GLOW RING */
    .ft-mini-btn::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 12px;
        background: radial-gradient(circle, rgba(123,184,224,0.25), transparent 60%);
        opacity: 0;
        transition: .3s;
    }

    /* HOVER */
    .ft-mini-btn:hover {
        background: var(--white);
        color: var(--sky-dd) !important;
        transform: translateY(-2px) scale(1.08);
        box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    }

        .ft-mini-btn:hover::after {
            opacity: 1;
        }

/* Text */
.ft-loc {
    display: block;
    font-size: .75rem;
    letter-spacing: .05em;
    color: rgba(255,255,255,0.65);
}

.ft-time {
    display: block;
    font-size: .85rem;
    color: var(--white);
    font-weight: 600;
    margin-top: 2px;
}

/* Contact */
.ft-contact-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* each block */
.ft-contact-box {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all .25s ease;
}

    /* icon */
    .ft-contact-box i {
        font-size: 14px;
        color: rgba(255,255,255,.6);
        transition: .25s ease;
    }

    /* link */
    .ft-contact-box a {
        font-size: 14px;
        color: rgba(255,255,255,.75);
        text-decoration: none;
        transition: .25s ease;
    }

    /* hover effect */
    .ft-contact-box:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.25);
    }

        .ft-contact-box:hover i {
            color: var(--sky);
            transform: scale(1.15);
        }

        .ft-contact-box:hover a {
            color: var(--white);
        }

/* Directions button */
.ft-dir-btn,
.ft-dir-btn:visited {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sky-dd);
    background: var(--white);
    transition: .3s ease;
}

    .ft-dir-btn:hover {
        background: var(--sky-ultra);
        color: var(--sky-dd);
    }

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
/* ══════════════════════════════════════
   LOADER — PREMIUM VERSION
══════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, var(--sky-ultra), var(--white));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: opacity .6s ease, visibility .6s ease;
}

    #loader.done {
        opacity: 0;
        visibility: hidden;
    }

    /* Logo */
    #loader img {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--sky-pale);
        box-shadow: 0 0 0 10px var(--sky-ultra);
        animation: pulseZoom 1.8s ease-in-out infinite;
    }

/* Brand name */
.ld-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: .18em;
    color: var(--sky-dd);
    animation: fadeUp .8s ease;
}

/* Loading bar */
.ld-bar {
    width: 160px;
    height: 3px;
    background: var(--sky-mist);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ld-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--sky), var(--sky-dd));
    border-radius: 10px;
    animation: slideLoad 1.6s ease-in-out infinite;
}

/* Animations */
@keyframes pulseZoom {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes slideLoad {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(250%);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}


/* ══════════════════════════════════════
   NAVBAR — PREMIUM FINAL VERSION
══════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

    /* Glow line */
    .nav::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--sky), transparent);
    }

/* CONTAINER */
.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 110px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* RIGHT SIDE GROUP */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ═════════ LOGO ═════════ */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

    .nav-logo img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        background: #fff;
        padding: 6px;
        border: 2px solid var(--sky);
        box-shadow: 0 8px 22px rgba(123,184,224,0.35), 0 0 0 8px rgba(123,184,224,0.08);
        transition: transform .3s ease;
    }

    .nav-logo:hover img {
        transform: scale(1.05);
    }

/* TEXT */
.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sky-dd);
    line-height: 1.1;
}

.sub {
    display: block;
    font-size: .7rem;
    letter-spacing: .18em;
    color: var(--text-light);
    margin-top: 3px;
}

/* ═════════ NAV LINKS ═════════ */
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        position: relative;
        font-size: .78rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--text-mid);
        padding: 6px 0;
        transition: color .3s ease;
    }

        /* Premium underline */
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0%;
            height: 2px;
            background: var(--sky);
            transform: translateX(-50%);
            transition: .3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 70%;
        }

        .nav-links a:hover {
            color: var(--sky-dd);
        }

/* ═════════ CTA BUTTON ═════════ */
.nav-btn {
    position: relative;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--sky), var(--sky-dd));
    box-shadow: 0 8px 22px rgba(123,184,224,.45);
    overflow: hidden;
    transition: all .3s ease;
}

    /* Shine */
    .nav-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
        transform: skewX(-20deg);
        transition: .6s;
    }

    .nav-btn:hover::before {
        left: 130%;
    }

    .nav-btn:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 12px 32px rgba(123,184,224,.6);
    }

/* ═════════ MOBILE ═════════ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 500;
}

    .nav-toggle span {
        width: 26px;
        height: 2px;
        background: var(--sky-dd);
        transition: all .3s ease;
    }

    /* OPEN STATE → turn into X */
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* RESPONSIVE */
@media (max-width: 900px) {

    .nav-container {
        height: 80px;
        padding: 0 18px;
    }

    .nav-logo img {
        width: 60px;
        height: 60px;
    }

    .brand {
        font-size: 1.1rem;
    }

    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}
/* Mobile menu overlay */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 490;
    background: linear-gradient(160deg, rgba(255,255,255,.97), rgba(244,250,255,.98));
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px; /* more breathing */
    padding: 80px 20px 40px;
    overflow: hidden;
}

    /* OPEN STATE */
    .mob-menu.open {
        display: flex;
        animation: mobFade .35s ease;
    }

/* smooth entry */
@keyframes mobFade {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CLOSE BUTTON (premium glass button) */
.mob-close {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(123,184,224,.25);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

    .mob-close:hover {
        transform: rotate(90deg) scale(1.1);
    }

/* LINKS (premium card-style feel) */
.mob-menu a {
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; /* reduced from 2.3 (too big for mobile) */
    font-style: italic;
    padding: 14px 20px;
    border-radius: 16px;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    transition: all .28s ease;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(123,184,224,.15);
}

    /* ICON */
    .mob-menu a i {
        font-size: 1.1rem;
        color: var(--sky-d);
        transition: .3s;
    }

    /* HOVER */
    .mob-menu a:hover {
        background: linear-gradient(135deg, rgba(123,184,224,.12), rgba(123,184,224,.05));
        transform: translateX(8px);
        box-shadow: 0 8px 22px rgba(123,184,224,.18);
        color: var(--sky-dd);
    }

        .mob-menu a:hover i {
            transform: scale(1.2);
            color: var(--sky-dd);
        }

    /* ACTIVE TAP */
    .mob-menu a:active {
        transform: scale(0.96);
    }

.mob-menu .orderbtn {
        margin-top: 10px;
        background: linear-gradient(135deg, var(--sky), var(--sky-dd));
        color: white;
        font-size: 1.4rem;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(123,184,224,.35);
    }

    .mob-menu .orderbtn i {
        color: white;
    }

    .mob-menu .orderbtn:hover {
        transform: scale(1.05);
    }

.mob-menu.open a {
    opacity: 0;
    transform: translateY(20px);
    animation: mobItem .5s ease forwards;
}

    .mob-menu.open a:nth-child(3) {
        animation-delay: .05s;
    }

    .mob-menu.open a:nth-child(4) {
        animation-delay: .1s;
    }

    .mob-menu.open a:nth-child(5) {
        animation-delay: .15s;
    }

    .mob-menu.open a:nth-child(6) {
        animation-delay: .2s;
    }

    .mob-menu.open a:nth-child(7) {
        animation-delay: .25s;
    }

@keyframes mobItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mob-brand {
    position: absolute;
    top: 20px;
    left: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .mob-brand img {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--sky-pale);
    }

    .mob-brand span {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        letter-spacing:.05em;
        font-weight: 600;
        color: var(--sky-dd);
    }

.mob-socs {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

/* BASE */
.mob-soc {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--sky-d);
    /* GLASS LOOK */
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(123,184,224,0.25);
    /* DEPTH */
    box-shadow: 0 6px 14px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.3);
    transition: all .28s ease;
    overflow: hidden;
}

    /* ICON */
    .mob-soc i {
        font-size: 16px;
        z-index: 2;
        transition: transform .3s ease;
    }

    /* SOFT GLOW LAYER */
    .mob-soc::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(circle at 30% 30%, rgba(123,184,224,0.25), transparent 60%);
        opacity: 0;
        transition: .3s;
    }

    /* HOVER */
    .mob-soc:hover {
        background: linear-gradient(135deg, var(--sky), var(--sky-dd));
        color: var(--white);
        border-color: transparent;
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 10px 22px rgba(123,184,224,0.45), 0 4px 12px rgba(0,0,0,0.1);
    }

        .mob-soc:hover i {
            transform: scale(1.15);
        }

        .mob-soc:hover::before {
            opacity: 1;
        }

    /* CLICK FEEDBACK (important for mobile) */
    .mob-soc:active {
        transform: scale(0.94);
    }

/* ══════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════ */
.page {
    display: none;
}

    .page.active {
        display: block;
    }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

    .rv.in {
        opacity: 1;
        transform: none;
    }

    .rv.rl {
        transform: translateX(-28px);
    }

    .rv.rr {
        transform: translateX(28px);
    }

        .rv.rl.in, .rv.rr.in {
            transform: none;
        }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

/* ══════════════════════════════════════
   GLOBAL UTILITIES
══════════════════════════════════════ */
.eyebrow {
    font-size: .64rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--sky-d);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 1.5px;
        background: var(--sky);
        border-radius: 2px;
    }

    .eyebrow.w {
        color: rgba(255,255,255,.8);
    }

        .eyebrow.w::before {
            background: rgba(255,255,255,.5);
        }

.h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}

    .h2 em {
        font-style: italic;
        color: var(--sky-d);
    }

    .h2.w {
        color: var(--white);
    }

        .h2.w em {
            color: var(--sky-pale);
        }

/* Buttons */
.btn-sky {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--sky);
    color: var(--white);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 5px 20px rgba(123,184,224,.34);
    transition: background .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

    .btn-sky::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
        transform: translateX(-100%);
        transition: transform .5s;
    }

    .btn-sky:hover::after {
        transform: translateX(100%);
    }

    .btn-sky:hover {
        background: var(--sky-d);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(123,184,224,.42);
    }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--white);
    color: var(--sky-dd);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,.7);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transition: background .3s, transform .3s, box-shadow .3s;
}

    .btn-white:hover {
        background: var(--sky-ultra);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.13);
    }

.btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: 2px solid rgba(255,255,255,.55);
    color: var(--white);
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    transition: background .3s, border-color .3s, transform .3s;
}

    .btn-outline-w:hover {
        background: rgba(255,255,255,.16);
        border-color: var(--white);
        transform: translateY(-2px);
    }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.mq {
    background: var(--sky);
    overflow: hidden;
    padding: 12px 0;
}

.mq-t {
    display: inline-flex;
    animation: mqRoll 38s linear infinite;
}

.mq-i {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}

.mq-d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    flex-shrink: 0;
}

@keyframes mqRoll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════
   FOOTER — UPGRADED
══════════════════════════════════════ */
footer {
    background: linear-gradient(160deg, #1c3a52 0%, #2c5c7a 60%, #3d87b8 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

    /* Decorative wave divider */
    footer::before {
        content: '';
        display: block;
        height: 60px;
        background: var(--white);
        clip-path: ellipse(55% 100% at 50% 0%);
    }

.ft-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 80px; /* controls left/right breathing space */
}

/* Top band: brand + columns */
.ft-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 52px;
    padding: 48px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Brand column */
.ft-brand {
    display: flex;
    flex-direction: column;
}

.ft-logo-wrap {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}

.ft-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.45);
    box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.ft-logo-wrap:hover .ft-lg {
    transform: rotate(-4deg) scale(1.06);
    box-shadow: 0 0 0 8px rgba(255,255,255,.18), 0 12px 32px rgba(0,0,0,.18);
}

.ft-name-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ft-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.45rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: .01em;
}

.ft-name-tag {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 2px;
}

.ft-desc {
    font-size: .84rem;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 260px;
}

/* Social icons — upgraded */
.ft-socs {
    display: flex;
    gap: 10px;
}

.ft-soc {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

    .ft-soc::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.15);
        transform: translateY(100%);
        transition: transform .3s ease;
    }

    .ft-soc:hover::before {
        transform: translateY(0);
    }

    .ft-soc:hover {
        background: var(--white);
        color: var(--sky-dd);
        border-color: var(--white);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }



/* Footer columns */
.ft-col {
    display: flex;
    flex-direction: column;
}

    /* make Visit column wider */
    .ft-col.ft-visit {
        grid-column: span 2;
    }

    .ft-col h4 {
        font-size: 12px;
        letter-spacing: .28em;
        text-transform: uppercase;
        color: rgba(255,255,255,.55);
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,.14);
        font-weight: 500;
    }

    .ft-col ul {
        list-style: none;
    }

    .ft-col li {
        margin-bottom: 10px;
    }

    .ft-col a {
        font-size: 14px;
        color: rgba(255,255,255,.75);
        text-decoration: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color .25s ease, gap .25s ease, padding-left .25s ease;
        position: relative;
    }

    .ft-col ul li a:not(.ft-mini-btn):not(.ft-contact a)::before {
        content: '→';
        font-size: .65rem;
        opacity: 0;
        transform: translateX(-6px);
        transition: opacity .25s ease, transform .25s ease;
    }

        .ft-col a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .ft-col a:hover {
            color: var(--white);
            padding-left: 4px;
        }

/* Newsletter strip */
.ft-newsletter {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}

.ft-nl-txt h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
}

.ft-nl-txt p {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    margin-top: 3px;
}

.ft-nl-form {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 360px;
}

.ft-nl-inp {
    flex: 1;
    padding: 11px 18px;
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    outline: none;
    transition: border-color .25s, background .25s;
}

    .ft-nl-inp::placeholder {
        color: rgba(255,255,255,.45);
    }

    .ft-nl-inp:focus {
        border-color: rgba(255,255,255,.6);
        background: rgba(255,255,255,.2);
    }

.ft-nl-btn {
    padding: 11px 22px;
    background: var(--white);
    color: var(--sky-dd);
    border: none;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    white-space: nowrap;
}

    .ft-nl-btn:hover {
        background: var(--sky-ultra);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,0,0,.15);
    }

/* Bottom bar */
.ft-bot {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .ft-bot p {
        font-size: .9rem;
        color: rgba(255,255,255,.42);
    }

        .ft-bot p:last-child {
            color: rgba(255,255,255,.35);
        }

.ft-bot-links {
    display: flex;
    gap: 20px;
}

    .ft-bot-links a {
        font-size: .65rem;
        color: rgba(255,255,255,.4);
        text-decoration: none;
        letter-spacing: .1em;
        text-transform: uppercase;
        transition: color .2s;
    }

        .ft-bot-links a:hover {
            color: rgba(255,255,255,.75);
        }

/* Decorative background circles */
footer .deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}

footer .deco-1 {
    width: 380px;
    height: 380px;
    top: -100px;
    right: -80px;
}

footer .deco-2 {
    width: 220px;
    height: 220px;
    bottom: 60px;
    left: 80px;
}

footer .deco-3 {
    width: 120px;
    height: 120px;
    top: 80px;
    left: 38%;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .ft-inner {
        padding: 0 24px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 36px 0 32px;
    }

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-newsletter {
        padding: 22px;
    }

    .ft-nl-form {
        max-width: 100%;
    }

    footer::before {
        height: 40px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0 18px;
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ft-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-nl-form {
        width: 100%;
    }

    .ft-bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ft-bot-links {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 576px) {

    .ft-top {
        grid-template-columns: 1fr; /* 🔥 single column */
        gap: 24px;
    }

    .ft-brand {
        width: 100%;
    }

    .ft-name {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        color: var(--white);
        font-weight: 600;
        letter-spacing: .01em;
    }

    .ft-desc {
        font-size: .84rem;
        color: rgba(255,255,255,.72);
        line-height: 1.75;
        margin-bottom: 22px;
        text-align:justify;
    }

    .ft-contact-box {
        flex: 1;
        min-width:100%;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        transition: all .25s ease;
    }
}

/* ══════════════════════════════════════
   PLACEHOLDER CONTENT AREA
   (Each page will slot in between header & footer)
══════════════════════════════════════ */
.main-content {
    padding-top: var(--nav-h);
    min-height: 60vh;
}

/* Demo page hero */
.demo-hero {
    min-height: 80vh;
    background: linear-gradient(160deg, var(--sky-dd), var(--sky), var(--sky-l));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 80px 52px;
}

    .demo-hero h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.8rem, 6vw, 5.5rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1.08;
    }

        .demo-hero h1 em {
            font-style: italic;
            display: block;
        }

    .demo-hero p {
        font-size: 1rem;
        color: rgba(255,255,255,.8);
        max-width: 500px;
        line-height: 1.75;
    }

.demo-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.demo-info {
    background: var(--sky-ultra);
    padding: 80px 52px;
    text-align: center;
}

    .demo-info h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        color: var(--sky-dd);
        margin-bottom: 12px;
    }

    .demo-info p {
        color: var(--text-mid);
        font-size: .95rem;
        line-height: 1.75;
        max-width: 640px;
        margin: 0 auto 30px;
    }

.demo-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-pill {
    padding: 10px 22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sky-dd);
    font-weight: 500;
    transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

    .demo-pill:hover {
        background: var(--sky-ultra);
        border-color: var(--sky-pale);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

/* ══════════════════════════════════════
   BACK TO TOP — PREMIUM FIXED
══════════════════════════════════════ */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    /* GLASS + GRADIENT */
    background: linear-gradient(135deg, var(--sky), var(--sky-dd));
    backdrop-filter: blur(8px);
    /* 🔥 PROPER SHADOW (layered) */
    box-shadow: 0 6px 14px rgba(0,0,0,0.12), 0 12px 28px rgba(123,184,224,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all .35s ease;
}

    /* SHOW */
    #backToTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* HOVER */
    #backToTop:hover {
        transform: translateY(-6px) scale(1.08);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18), 0 16px 40px rgba(123,184,224,0.55);
    }

    /* ICON STYLE */
    #backToTop i {
        transition: transform .3s ease;
    }

    #backToTop:hover i {
        transform: translateY(-2px);
    }

    /* SOFT OUTER GLOW RING */
    #backToTop::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(123,184,224,0.25), transparent 70%);
        z-index: -1;
    }

/* MOBILE */
@media (max-width: 768px) {
    #backToTop {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
    }
}

/* ═════════ FIX NEWSLETTER MOBILE OVERFLOW ═════════ */
@media (max-width: 768px) {

    .ft-newsletter {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 22px;
    }

    .ft-nl-form {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .ft-nl-inp {
        width: 100%;
        min-width: 0;
    }

    .ft-nl-btn {
        width: 100%;
    }
}

/* extra safety for very small phones */
@media (max-width: 480px) {

    .ft-newsletter {
        padding: 18px;
    }

    .ft-nl-txt h5 {
        font-size: 1.05rem;
    }

    .ft-nl-txt p {
        font-size: .75rem;
    }
}