:root {
    --ivory: #faf6ec;
    --ivory-2: #f2ecdc;
    --card: #fffdf7;
    --forest: #1f3d2f;
    --forest-2: #2c5240;
    --forest-light: #4f7a63;
    --sage: #7c9a7f;
    --gold: #b8935a;
    --gold-bright: #c9a655;
    --ember: #a85a34;
    --ink: #2a2a24;
    --ink-dim: #6b6a5e;
    --hairline: rgba(31, 61, 47, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}


/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    background: var(--forest);
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
}



.slide-mandala {
    width: 380px;
    height: 380px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .14;
    animation: spin 160s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.eyebrow {
    font-family: 'Jost', sans-serif;
    letter-spacing: .42em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--gold-bright);
    margin-bottom: 22px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 90px;
    line-height: 1.04;
    color: #f7f2e4;
    letter-spacing: .01em;
    position: relative;
    z-index: 3;
}

.hero h1 em {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 600;
}

.hero .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 25px;
    color: #fff;
    margin-top: 24px;
    max-width: 1000px;
    line-height: 1.5;
    position: relative;
    z-index: 3;
    letter-spacing: 0.8px;
}

.hero .meta {
    margin: 36px 0;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 600;
    justify-content: center;
    font-size: 16px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    position: relative;
    z-index: 3;
}

.hero .meta .dot {
    width: 4px;
    height: 4px;
    background: var(--gold-bright);
    border-radius: 50%;
}

.slider-nav {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--gold-bright);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}

.slider-nav button.active {
    background: var(--gold-bright);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(233, 205, 140, .4);
    background: rgba(20, 37, 28, .4);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background .3s ease, border-color .3s ease;
}

.slider-arrow:hover {
    background: rgba(20, 37, 28, .7);
    border-color: var(--gold-bright);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.scroll-cue {
    position: absolute;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #cdd8cd;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

.scroll-cue::after {
    content: '';
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--gold-bright), transparent);
    animation: drop 2s ease-in-out infinite;
}

@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(-6px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

/* ---------- DAY DIVIDER ---------- */
.day-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 120px 0 8px;
}

.day-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}

.day-tag {
    text-align: center;
    flex-shrink: 0;
}

.day-tag .num {
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
}

.day-tag h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 44px;
    color: var(--forest);
    margin: 5px 0 15px;
}

.day-tag .theme {
    font-family: 'Onest';
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- TIMELINE ---------- */
.timeline {
    position: relative;
    padding: 56px 0 20px;
}

.spine {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--hairline);
}

.arc-icon {
    position: absolute;
    left: 19px;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ivory);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.arc-icon svg {
    width: 18px;
    height: 18px;
}

.item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 38px;
    opacity: 0;
    transform: translateY(16px);
    animation: rise .7s ease forwards;
}

.item .node {
    position: absolute;
    left: 19px;
    top: 6px;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--forest-2);
    box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--hairline);
    z-index: 2;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time {
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--forest);
    margin-bottom: 8px;
    letter-spacing: .01em;
}

.item p {
    font-size: 16px;
    line-height: 28px;
    color: var(--ink-dim);
    max-width: 560px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.item.pause h3 {
    color: var(--sage);
}

.item.rite h3 {
    color: var(--ember);
}

/* ---------- HIGHLIGHTS ---------- */
.highlights {
    margin: 80px 0 80px;
    text-align: center;
}

.highlights .kicker {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.highlights h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 52px;
    color: var(--forest);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}

.cell {
    background: var(--card);
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cell svg {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    stroke: var(--forest-2);
}

.cell span {
    font-size: 17px;
    letter-spacing: 0.5px;
    color: #212121;
    line-height: 30px;
    font-weight: 500;
}

/* ---------- CLOSING WORDS ---------- */
.closing {
    text-align: center;
    padding: 0 0 25px 0;
}

.closing .words {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 34px;
}

.closing .words span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 27px;
    color: var(--gold);
    letter-spacing: 0.5px;
    position: relative;
}

.closing .words span:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -22px;
    color: var(--hairline);
    font-style: normal;
}

/* ---------- ENQUIRY FORM ---------- */
.enquiry {
    background: linear-gradient(rgba(20, 37, 28, .88), rgba(20, 37, 28, .94)), url('https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?fm=jpg&q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
}

.enquiry-mandala {
    width: 420px;
    height: 420px;
    position: absolute;
    top: -120px;
    right: -140px;
    opacity: .08;
}

.enquiry-wrap {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.enquiry .kicker {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--gold-bright);
    margin-bottom: 10px;
}

.enquiry h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 40px;
    color: #f7f2e4;
    margin-bottom: 16px;
}

.enquiry .lead {
    text-align: center;
    font-size: 15px;
    color: #cdd8cd;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 50px;
}

form.enquiry-form {
    background: var(--card);
    border-radius: 4px;
    padding: 42px 38px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    margin-bottom: 22px;
}

.field label {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--forest-2);
    margin-bottom: 9px;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--hairline);
    background: transparent;
    padding: 10px 2px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: var(--ink);
    font-weight: 300;
    transition: border-color .3s ease;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Jost', sans-serif;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #b7b3a4;
}

.submit-btn {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border: none;
    border-radius: 2px;
    background: var(--forest);
    color: #f7f2e4;
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background .3s ease;
}

.submit-btn:hover {
    background: var(--forest-2);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #a9b8ac;
    margin-top: 20px;
    letter-spacing: .02em;
}

.form-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 44px;
    height: 44px;
    stroke: var(--gold-bright);
    margin-bottom: 18px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--forest);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 14.5px;
    color: var(--ink-dim);
}

@media(max-width:640px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1{
            font-size: 48px;
    }

    .highlights{
        margin-bottom: 50px !important;
    }
    .hero-content{
        padding: 0px 12px !important;
    }

    .logo-div{
        gap: 10px !important;
    }

    .day-tag .theme{
        font-size: 12px !important;
    }

    .logo-div img{
        width: 120px !important;
    }

    .item{
     padding-left: 45px !important;
    }

    .day-divider .line{
        display: none !important;
    }

    .highlights h2{
        font-size: 34px !important;
    }

    .cell{
        padding: 30px;
    }

    .button-div{
        gap: 15px !important;
    }

    .button-div a{

    }

    .day-divider{
        display: block !important;
        margin-top: 60px !important;
    }

    .closing .words span{
        font-size: 20px;
    }

    .closing .words{
        gap: 0px  15px!important;
    }
    .logo-div .bg-img{
        width: 60px !important;
    }

    .hero .sub{
        font-size: 18px !important;
    }

    .hero .meta{
        font-size: 13px !important;
    }

    .logo-div, .button-div{
        flex-wrap: wrap;
    }

    .day-tag h2 {
        font-size: 34px;
    }

    .item h3 {
        font-size: 22px;
    }

    .slide-mandala {
        width: 260px;
        height: 260px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    form.enquiry-form {
        padding: 32px 24px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.45, 0, 0.55, 1);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 7s ease-out;
    will-change: transform;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 37, 28, 0.72),
            rgba(20, 37, 28, 0.85));
    z-index: 1;
}

.hero-geometry {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='160' fill='none' stroke='rgba(184,154,90,0.08)' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='rgba(184,154,90,0.06)' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='rgba(184,154,90,0.06)' stroke-width='0.8'/%3E%3Cpolygon points='200,40 340,280 60,280' fill='none' stroke='rgba(184,154,90,0.07)' stroke-width='0.8'/%3E%3Cpolygon points='200,360 60,120 340,120' fill='none' stroke='rgba(184,154,90,0.07)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 500px 500px;
    background-position: center;
}

.hero-counter {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-counter-current {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
}

.hero-counter-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(184, 154, 90, 0.7), rgba(255, 255, 255, 0.2));
}

.hero-counter-total {
    font-size: 16px;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    border: none;
    transition: background 0.4s, width 0.4s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-bright);
    width: 44px;
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 3;
    width: 0%;
    transition: width 0.1s linear;
}

.hero-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 3;
}

.hero-caption-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: opacity 0.6s ease;
    font-family: var(--body-text) !important;
}

@media (max-width: 768px) {
    .hero-counter {
        right: 10px;
    }

    .hero-counter-current {
        font-size: 25px;
    }

    .hero-dots {
        right: 20px;
        bottom: 80px;
    }

    .hero-caption {
        left: 24px;
        bottom: 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 1200px;
}

.hero-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: #f6c74c;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: var(--body-text) !important;
}


.hero-headline em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 40px;
    background: var(--gold-bright);
    color: var(--ivory);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
    border-radius: 50px;
}

.logo-div {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.logo-div img {
    width: 200px;
    height: 100% !important;
}

.bg-img {
    width: 80px !important;
}

.ebg{
    width: 250px !important;
}

.button-div {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.button-div a {
    position: relative;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: block;
    background: var(--gold-bright);
    color: #fff;
    padding: 10px 50px;
    text-decoration: none;
    border-radius: 50px;
}

.query-contact{
    text-align:center;
    margin-top:20px;
}

.query-contact p{
    margin: 35px 0 0 0;
    font-size: 17px;
    line-height: 30px !important;
    font-weight: 500;
    color:#333;
    letter-spacing: 0.5px;
}



.query-contact a{
    text-decoration:underline !important;
    font-weight: 500;
    color:var(--gold);
    transition:.3s;
}

.query-contact a:hover{
    text-decoration:underline;
}

.query-contact span{
    color:#999;
}