/* ══════════════════════════════════
   COMMON
══════════════════════════════════ */
section {
    padding: 96px 0;
}

.section-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
    display: block;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 16px;
}

.section-heading em {
    font-style: italic;
    color: var(--saffron);
}

.section-sub {
    font-size: .92rem;
    color: var(--text-warm);
    line-height: 1.85;
    max-width: 560px;
}

.ornament {
    width: 48px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
    margin-bottom: 24px;
}

.ornament.cx {
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-v {
    background: var(--saffron);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    font-size: .86rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(232, 114, 42, .32);
}

.btn-primary-v:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(232, 114, 42, .4);
}

.btn-outline-v {
    background: transparent;
    color: var(--brown);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1.5px solid var(--brown);
    font-size: .86rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-v:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
}

/* ══════════════════════════════════
   PAGE HERO
══════════════════════════════════ */
.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 72px;
}

.page-hero-img {
    position: absolute;
    inset: 0;
}

.page-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 9s ease forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 8, .75) 0%, rgba(120, 70, 30, .48) 55%, rgba(232, 114, 42, .14) 100%);
}

.hero-geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232, 114, 42, .2);
    pointer-events: none;
}

.hero-geo-ring.r1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px;
    animation: spinRing 18s linear infinite;
}

.hero-geo-ring.r2 {
    width: 180px;
    height: 180px;
    bottom: 40px;
    left: -40px;
    animation: spinRing 12s linear infinite reverse;
}

@keyframes spinRing {
    to {
        transform: rotate(360deg);
    }
}

.hero-bar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 0 52px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 20px;
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: fadeIn .8s .2s both;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeIn .8s .35s both;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero .hero-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    max-width: 520px;
    animation: fadeIn .8s .5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(232, 114, 42, .1);
    padding: 14px 0;
}

.breadcrumb-bar .breadcrumb {
    margin: 0;
    font-size: .76rem;
    color: var(--text-warm);
    align-items: center;
}

.breadcrumb-bar .breadcrumb-item a {
    color: var(--saffron);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--saffron);
    content: "›";
    font-size: 1rem;
}

/* ══════════════════════════════════
   INTRO STRIP (mood quote)
══════════════════════════════════ */
.intro-strip {
    background: var(--white);
    padding: 56px 0;
}

.mood-quote-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--saffron-pale) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    overflow: hidden;
}

.mood-quote-wrap::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(232, 114, 42, .08);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.mood-quote-wrap p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--brown-dark);
    line-height: 1.55;
    position: relative;
    z-index: 1;
    margin: 0;
}

.mood-quote-wrap cite {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--saffron);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 16px;
    font-style: normal;
}

.mood-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.mood-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 18px;
    box-shadow: var(--shadow-card);
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-warm);
    transition: var(--t);
}

.mood-feat:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-2px);
}

.mood-feat i {
    color: var(--saffron);
    font-size: .9rem;
    transition: .3s;
}

.mood-feat:hover i {
    color: #fff;
}

/* ══════════════════════════════════
   TIMELINE  (4.2)
══════════════════════════════════ */
.timeline-section {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 42, .05) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 155, 118, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* Central spine */
.timeline-wrap {
    position: relative;
    padding: 20px 0;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--beige) 5%, var(--beige) 95%, transparent);
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 64px;
    position: relative;
}

.tl-item:last-child {
    margin-bottom: 0;
}

/* alternating */
.tl-item.even {
    flex-direction: row-reverse;
}

.tl-content {
    width: calc(50% - 44px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--t);
    position: relative;
}

.tl-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* tail arrow */
.tl-item:not(.even) .tl-content::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 28px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid var(--white);
}

.tl-item.even .tl-content::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 28px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid var(--white);
}

.tl-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.tl-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--saffron-pale);
    color: var(--saffron);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.tl-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.tl-content p {
    font-size: .8rem;
    color: var(--text-warm);
    line-height: 1.7;
    margin: 0;
}

/* centre node */
.tl-node {
    width: 88px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.tl-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    cursor: default;
}

.tl-dot i {
    font-size: 1.1rem;
    color: var(--white);
}

.tl-content:hover~* .tl-dot,
.tl-item:hover .tl-dot {
    transform: scale(1.15);
}

/* colour coding by period */
.tl-item[data-period="morning"] .tl-dot {
    background: linear-gradient(135deg, #F9A046, #E8722A);
}

.tl-item[data-period="forenoon"] .tl-dot {
    background: linear-gradient(135deg, #C9963A, #E8C070);
}

.tl-item[data-period="noon"] .tl-dot {
    background: linear-gradient(135deg, #7A9B76, #A8C5A4);
}

.tl-item[data-period="afternoon"] .tl-dot {
    background: linear-gradient(135deg, #7A9B76, #5E7F5A);
}

.tl-item[data-period="evening"] .tl-dot {
    background: linear-gradient(135deg, #C9963A, #A07628);
}

.tl-item[data-period="night"] .tl-dot {
    background: linear-gradient(135deg, #7A4A28, #5C3418);
}

.tl-empty {
    width: calc(50% - 44px);
}

/* spacer for alternating side */

/* mobile timeline */
@media(max-width:767px) {
    .timeline-wrap::before {
        left: 28px;
    }

    .tl-item,
    .tl-item.even {
        flex-direction: column;
        padding-left: 68px;
    }

    .tl-content {
        width: 100%;
    }

    .tl-content::after,
    .tl-item.even .tl-content::after {
        display: none;
    }

    .tl-node {
        position: absolute;
        left: 0;
        top: 0;
        width: 56px;
    }

    .tl-empty {
        display: none;
    }
}

/* ══════════════════════════════════
   RECREATION  (4.3)
══════════════════════════════════ */
.recreation-section {
    background: var(--white);
}

.rec-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--t);
    height: 100%;
}

.rec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.rec-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.rec-img img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.rec-card:hover .rec-img img {
    transform: scale(1.07);
}

.rec-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 8, .5), transparent 55%);
}

.rec-icon-float {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    background: rgba(250, 246, 240, .92);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-icon-float i {
    color: var(--saffron);
    font-size: 1rem;
}

.rec-body {
    padding: 22px 22px 24px;
}

.rec-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.rec-body p {
    font-size: .78rem;
    color: var(--text-warm);
    line-height: 1.7;
    margin: 0;
}

/* festival tags */
.festival-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.ftag {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .74rem;
    font-weight: 500;
    color: var(--text-warm);
    transition: var(--t);
    box-shadow: var(--shadow-card);
}

.ftag i {
    color: var(--saffron);
    font-size: .85rem;
}

.ftag:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
    transform: translateY(-2px);
}

.ftag:hover i {
    color: #fff;
}

/* ══════════════════════════════════
   FAMILY CONNECTION  (4.4)
══════════════════════════════════ */
.family-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.family-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 42, .06) 0%, transparent 70%);
    pointer-events: none;
}

.family-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    position: relative;
}

.family-img-wrap img {
    height: 500px;
    object-fit: cover;
}

.family-pill {
    position: absolute;
    background: rgba(250, 246, 240, .95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-warm);
}

.family-pill.p1 {
    bottom: 28px;
    left: 28px;
}

.family-pill.p2 {
    top: 28px;
    right: -20px;
}

.family-pill .pill-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
}

.family-pill .pill-lbl {
    font-size: .65rem;
    font-weight: 500;
    color: var(--text-warm);
}

.family-connect-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: var(--t);
    border-left: 4px solid transparent;
}

.family-connect-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--saffron);
}

.fcc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--saffron-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: .3s;
}

.family-connect-card:hover .fcc-icon {
    background: var(--saffron);
}

.fcc-icon i {
    font-size: 1.2rem;
    color: var(--saffron);
    transition: .3s;
}

.family-connect-card:hover .fcc-icon i {
    color: #fff;
}

.family-connect-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.family-connect-card p {
    font-size: .8rem;
    color: var(--text-warm);
    line-height: 1.75;
    margin: 0;
}

/* visiting hours card */
.visit-hours-card {
    background: var(--saffron);
    border-radius: var(--radius-lg);
    padding: 28px 28px;
    color: #fff;
    margin-top: 20px;
}

.visit-hours-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.vh-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .82rem;
}

.vh-row i {
    opacity: .75;
    width: 18px;
}

.vh-row:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════
   CARE PROMISE  (light dark band — minimum dark)
══════════════════════════════════ */
.care-promise {
    background: var(--charcoal);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.care-promise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, .13) 0%, transparent 70%);
}

.care-promise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}

.promise-item {
    text-align: center;
    padding: 28px 20px;
}

.promise-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--t);
}

.promise-item:hover .promise-icon {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: translateY(-4px);
}

.promise-icon i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .7);
    transition: .3s;
}

.promise-item:hover .promise-icon i {
    color: #fff;
}

.promise-item h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 6px;
}

.promise-item p {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════
   CTA SECTION  (4.5)
══════════════════════════════════ */
.cta-section {
    background: var(--saffron-pale);
    padding: 80px 0;
}

.cta-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    box-shadow: var(--shadow-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 114, 42, .07) 0%, transparent 70%);
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 155, 118, .08) 0%, transparent 70%);
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
    background: #20b957;
    color: #fff;
    transform: translateY(-2px);
}



/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:991px) {
    .family-pill.p2 {
        right: 10px;
    }
}

@media(max-width:767px) {
    section {
        padding: 64px 0;
    }

    .page-hero {
        min-height: 420px;
    }

    .mood-quote-wrap {
        padding: 32px 24px;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links-desktop {
        display: none !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .family-img-wrap img {
        height: 320px;
    }

    .family-pill.p2 {
        display: none;
    }
}