/* =========================================================
   VISIT WAYANAD - TRIP PLANNER
   Phase 1
========================================================= */

.vw-planner {
    --vw-green: #0B6B3A;
    --vw-dark-green: #064C2C;
    --vw-cream: #F6F2E9;
    --vw-gold: #C89B3C;
    --vw-text: #173126;
    --vw-muted: #65736C;
    --vw-border: #DDE4DF;
    --vw-white: #FFFFFF;

    width: 100%;
    background: var(--vw-cream);
    color: var(--vw-text);

    padding: 56px 24px 72px;

    box-sizing: border-box;
}


.vw-planner *,
.vw-planner *::before,
.vw-planner *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.vw-planner__inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

/* =========================================================
   PLANNER INTRODUCTION
========================================================= */

.vw-planner__intro {
    max-width: 900px;
    margin: 0 auto 26px;

    text-align: center;
}


/* EYEBROW */

.vw-planner__intro-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: var(--vw-green);
}


/* MAIN PAGE TITLE */

.vw-planner__intro-title {
    max-width: 760px;

    margin: 0 auto 15px;

    font-family: "Fraunces", Georgia, serif;

    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.08;

    font-weight: 600;

    color: var(--vw-dark-green);
}


/* INTRODUCTION */

.vw-planner__intro-text {
    max-width: 760px;

    margin: 0 auto;

    font-family: "Public Sans", sans-serif;

    font-size: 15px;
    line-height: 1.7;

    color: var(--vw-muted);
}


/* =========================================================
   PLANNER INTRODUCTION - TABLET
========================================================= */

@media (max-width: 900px) {

    .vw-planner__intro {
        max-width: 760px;
        margin-bottom: 30px;
    }

    .vw-planner__intro-title {
        font-size: 42px;
    }

}


/* =========================================================
   PLANNER INTRODUCTION - MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-planner__intro {
        margin-bottom: 25px;

        text-align: center;
    }


    .vw-planner__intro-eyebrow {
        margin-bottom: 9px;

        font-size: 10px;
        letter-spacing: 1.35px;
    }


    .vw-planner__intro-title {
        max-width: 330px;

        margin-bottom: 11px;

        font-size: 32px;
        line-height: 1.12;
    }


    .vw-planner__intro-text {
        max-width: 355px;

        font-size: 13.5px;
        line-height: 1.6;
    }

}
/* =========================================================
   PROGRESS
========================================================= */

.vw-planner__progress-wrap {
    max-width: 820px;
    margin: 0 auto 50px;
}


.vw-planner__progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 12px;

    font-family: "Public Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: var(--vw-muted);
}


.vw-planner__progress-meta > span:first-child {
    color: var(--vw-dark-green);
}


.vw-planner__step-count strong {
    color: var(--vw-dark-green);
}


.vw-planner__progress {
    width: 100%;
    height: 6px;

    background: #E1E6E2;

    border-radius: 100px;
    overflow: hidden;
}


.vw-planner__progress-bar {
    display: block;
    height: 100%;

    background: var(--vw-green);

    border-radius: inherit;

    transition: width 0.35s ease;
}


/* =========================================================
   STEP
========================================================= */

.vw-planner__step {
    display: none;
}


.vw-planner__step--active {
    display: block;
}


/* =========================================================
   HEADING
========================================================= */

.vw-planner__heading {
    max-width: 720px;

    margin: 0 auto 38px;

    text-align: center;
}


.vw-planner__eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: 1.6px;

    color: var(--vw-green);
}


.vw-planner__heading h2 {
    margin: 0 0 14px;

    font-family: "Fraunces", Georgia, serif;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;

    font-weight: 600;

    color: var(--vw-dark-green);
}


.vw-planner__heading p {
    max-width: 580px;

    margin: 0 auto;

    font-family: "Public Sans", sans-serif;

    font-size: 16px;
    line-height: 1.65;

    color: var(--vw-muted);
}


/* =========================================================
   CHOICES
========================================================= */

.vw-planner__choices--traveller {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px;

    max-width: 960px;

    margin: 0 auto;
}


.vw-choice {
    position: relative;

    min-width: 0;
    min-height: 190px;

    padding: 27px 16px 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 14px;

    background: var(--vw-white);

    color: var(--vw-text);

    font-family: "Public Sans", sans-serif;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {

    .vw-choice:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 8px 24px rgba(6, 76, 44, 0.08);
    }

}


.vw-choice:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.22);
    outline-offset: 3px;
}


/* ICON */

.vw-choice__icon {
    width: 54px;
    height: 54px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}


.vw-choice__icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TITLE */

.vw-choice__title {
    display: block;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 700;

    color: var(--vw-dark-green);
}


/* DESCRIPTION */

.vw-choice__description {
    display: block;

    margin-top: 7px;

    font-size: 12px;
    line-height: 1.45;

    color: var(--vw-muted);
}


/* CHECK */

.vw-choice__check {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 13px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* SELECTED */

.vw-choice.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 8px 26px rgba(6, 76, 44, 0.08);
}


.vw-choice.is-selected .vw-choice__check {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   VALIDATION
========================================================= */

.vw-planner__validation {
    min-height: 22px;

    margin: 16px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 13px;

    color: #A13D32;
}


/* =========================================================
   ACTIONS
========================================================= */

.vw-planner__actions {
    display: flex;
    justify-content: center;

    margin-top: 15px;
}


.vw-planner__continue {
    min-width: 190px;
    min-height: 52px;

    padding: 14px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border: 0;
    border-radius: 8px;

    background: var(--vw-green);
    color: #FFFFFF;

    font-family: "Public Sans", sans-serif;

    font-size: 15px;
    line-height: 1;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}


.vw-planner__continue span {
    font-size: 20px;
    line-height: 1;
}


.vw-planner__continue:not(:disabled):hover {
    background: var(--vw-dark-green);
}


.vw-planner__continue:not(:disabled):active {
    transform: translateY(1px);
}


.vw-planner__continue:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vw-planner {
        padding: 46px 22px 64px;
    }


    .vw-planner__choices--traveller {
        max-width: 700px;

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .vw-choice {
        min-height: 165px;
    }


    .vw-choice:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 7px);

        justify-self: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-planner {
        padding: 30px 16px 46px;
    }


    .vw-planner__progress-wrap {
        margin-bottom: 35px;
    }


    .vw-planner__progress-meta {
        font-size: 12px;
    }


    .vw-planner__heading {
        margin-bottom: 28px;
    }


    .vw-planner__eyebrow {
        margin-bottom: 10px;

        font-size: 11px;
    }


    .vw-planner__heading h2 {
        margin-bottom: 12px;

        font-size: 31px;
        line-height: 1.15;
    }


    .vw-planner__heading p {
        max-width: 340px;

        font-size: 14px;
        line-height: 1.55;
    }


    .vw-planner__choices--traveller {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .vw-choice {
        min-height: 145px;

        padding: 21px 10px 18px;

        border-radius: 12px;
    }


    .vw-choice:last-child {
        width: calc(50% - 5px);
    }


    .vw-choice__icon {
        width: 43px;
        height: 43px;

        margin-bottom: 12px;
    }


    .vw-choice__title {
        font-size: 15px;
    }


    .vw-choice__description {
        margin-top: 5px;

        font-size: 11px;
    }


    .vw-choice__check {
        top: 9px;
        right: 9px;

        width: 22px;
        height: 22px;

        font-size: 11px;
    }


    .vw-planner__validation {
        margin-top: 11px;
    }


    .vw-planner__actions {
        margin-top: 8px;
    }


    .vw-planner__continue {
        width: 100%;
        max-width: 400px;

        min-height: 52px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .vw-planner {
        padding-left: 12px;
        padding-right: 12px;
    }


    .vw-choice {
        min-height: 138px;
    }


    .vw-choice__description {
        display: none;
    }

}
/* =========================================================
   TRIP PLANNER - MOBILE COMPACT REFINEMENT
========================================================= */

@media (max-width: 600px) {

    .vw-planner {
        padding-top: 22px;
        padding-bottom: 40px;
    }

    .vw-planner__progress-wrap {
        margin-bottom: 26px;
    }

    .vw-planner__heading {
        margin-bottom: 22px;
    }

    .vw-planner__eyebrow {
        margin-bottom: 8px;
    }

    .vw-planner__heading h2 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .vw-planner__heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .vw-planner__choices--traveller {
        gap: 10px;
    }

    .vw-choice {
        min-height: 116px;
        padding: 16px 10px 14px;
    }

    .vw-choice__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 9px;
    }

    .vw-choice__title {
        font-size: 15px;
    }

    /* Descriptions are unnecessary on small screens */
    .vw-choice__description {
        display: none;
    }

    .vw-choice__check {
        top: 8px;
        right: 8px;

        width: 21px;
        height: 21px;
    }

    .vw-planner__validation {
        min-height: 14px;
        margin-top: 8px;
    }

    .vw-planner__actions {
        margin-top: 6px;
    }

    .vw-planner__continue {
        min-height: 50px;
    }
}
/* =========================================================
   STEP 2 - TRAVEL DATES
========================================================= */

.vw-date-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;

    max-width: 900px;
    margin: 0 auto;
}


.vw-date-option {
    position: relative;

    min-height: 155px;
    padding: 24px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid var(--vw-border);
    border-radius: 14px;

    background: var(--vw-white);
    color: var(--vw-text);

    font-family: "Public Sans", sans-serif;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {

    .vw-date-option:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 8px 24px rgba(6, 76, 44, 0.08);
    }

}


.vw-date-option:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.22);
    outline-offset: 3px;
}


.vw-date-option__icon {
    width: 43px;
    height: 43px;

    margin-bottom: 14px;

    color: var(--vw-green);
}


.vw-date-option__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.vw-date-option__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.vw-date-option__content strong {
    font-size: 15px;
    line-height: 1.35;

    color: var(--vw-dark-green);
}


.vw-date-option__content small {
    display: block;

    margin-top: 6px;

    font-size: 12px;
    line-height: 1.45;

    color: var(--vw-muted);
}


.vw-date-option__check {
    position: absolute;

    top: 11px;
    right: 11px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.vw-date-option.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 8px 26px rgba(6, 76, 44, 0.08);
}


.vw-date-option.is-selected .vw-date-option__check {
    opacity: 1;
    transform: scale(1);
}


/* DATE DETAIL PANEL */

.vw-date-details {
    max-width: 760px;

    margin: 22px auto 0;

    padding: 22px;

    border: 1px solid var(--vw-border);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.72);
}


.vw-date-details[hidden] {
    display: none !important;
}


.vw-date-details__title {
    margin-bottom: 17px;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 15px;
    font-weight: 700;

    color: var(--vw-dark-green);
}


.vw-date-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.vw-field {
    min-width: 0;
}


.vw-field label,
.vw-duration-block__label {
    display: block;

    margin-bottom: 7px;

    font-family: "Public Sans", sans-serif;

    font-size: 12px;
    font-weight: 700;

    color: var(--vw-text);
}


.vw-field input {
    display: block;

    width: 100%;
    min-width: 0;
    height: 48px;

    padding: 0 13px;

    border: 1px solid #CCD6D0;
    border-radius: 8px;

    background: #FFFFFF;

    color: var(--vw-text);

    font-family: "Public Sans", sans-serif;
    font-size: 16px;

    outline: none;
}


.vw-field input:focus {
    border-color: var(--vw-green);

    box-shadow:
        0 0 0 3px rgba(11, 107, 58, 0.10);
}


.vw-field--month {
    max-width: 360px;
    margin: 0 auto 20px;
}


.vw-trip-duration-result {
    min-height: 22px;

    margin-top: 13px;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 13px;
    font-weight: 600;

    color: var(--vw-green);
}


/* DURATION */

.vw-duration-block {
    margin-top: 4px;
}


.vw-duration-block__label {
    text-align: center;
}


.vw-duration-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 8px;
}


.vw-duration-options button {
    min-height: 42px;

    padding: 10px 15px;

    border: 1px solid #CCD6D0;
    border-radius: 8px;

    background: #FFFFFF;
    color: var(--vw-text);

    font-family: "Public Sans", sans-serif;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}


.vw-duration-options button.is-selected {
    border-color: var(--vw-green);

    background: var(--vw-green);
    color: #FFFFFF;
}


/* BACK + CONTINUE */

.vw-planner__actions--split {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    justify-content: space-between;

    gap: 14px;
}


.vw-planner__back {
    min-height: 52px;

    padding: 14px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid #BCC9C1;
    border-radius: 8px;

    background: transparent;

    color: var(--vw-dark-green);

    font-family: "Public Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   STEP 2 MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-date-options {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .vw-date-option {
        min-height: 82px;

        padding: 14px 42px 14px 14px;

        flex-direction: row;
        justify-content: flex-start;

        text-align: left;
    }


    .vw-date-option__icon {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        margin: 0 13px 0 0;
    }


    .vw-date-option__content {
        align-items: flex-start;

        min-width: 0;
    }


    .vw-date-option__content strong {
        font-size: 14px;
    }


    .vw-date-option__content small {
        font-size: 11px;
    }


    .vw-date-option__check {
        top: 50%;
        right: 12px;

        transform: translateY(-50%) scale(0.75);
    }


    .vw-date-option.is-selected .vw-date-option__check {
        transform: translateY(-50%) scale(1);
    }


    .vw-date-details {
        margin-top: 14px;

        padding: 16px 13px;
    }


    .vw-date-fields {
        grid-template-columns: 1fr;

        gap: 11px;
    }


    .vw-duration-options {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .vw-duration-options button {
        width: 100%;
    }


    .vw-duration-options button:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }


    .vw-planner__actions--split {
        display: grid;

        grid-template-columns: auto 1fr;

        gap: 10px;
    }


    .vw-planner__actions--split .vw-planner__continue {
        width: 100%;
    }

}
/* =========================================================
   STEP 3 - TRAVELLERS & ROOMS
========================================================= */

.vw-guests-panel {
    max-width: 720px;
    margin: 0 auto;

    padding: 8px 28px;

    border: 1px solid var(--vw-border);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.82);
}


.vw-guest-row {
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 20px 4px;

    border-bottom: 1px solid #E3E8E5;
}


.vw-guest-row:last-child {
    border-bottom: 0;
}


.vw-guest-row__info {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.vw-guest-row__info strong {
    font-family: "Public Sans", sans-serif;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 700;

    color: var(--vw-dark-green);
}


.vw-guest-row__info span {
    margin-top: 4px;

    font-family: "Public Sans", sans-serif;

    font-size: 12px;
    line-height: 1.4;

    color: var(--vw-muted);
}


/* COUNTER */

.vw-counter {
    flex: 0 0 auto;

    display: grid;
    grid-template-columns: 42px 42px 42px;

    align-items: center;

    gap: 5px;
}


.vw-counter__button {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #C9D4CD;
    border-radius: 50%;

    background: #FFFFFF;

    color: var(--vw-green);

    font-family: "Public Sans", sans-serif;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {

    .vw-counter__button:hover {
        border-color: var(--vw-green);

        background: #F2F8F4;
    }

}


.vw-counter__button:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.18);
    outline-offset: 2px;
}


.vw-counter__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}


.vw-counter__value {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;

    font-family: "Public Sans", sans-serif;

    font-size: 18px;
    font-weight: 700;

    color: var(--vw-dark-green);
}


/* CHILD AGES */

.vw-child-ages {
    padding: 18px 4px 21px;

    border-bottom: 1px solid #E3E8E5;

    background: #F7FAF8;
}


.vw-child-ages[hidden] {
    display: none !important;
}


.vw-child-ages__heading {
    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 14px;
    font-weight: 700;

    color: var(--vw-dark-green);
}


.vw-child-ages__help {
    margin: 4px 0 14px;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 11px;
    line-height: 1.45;

    color: var(--vw-muted);
}


.vw-child-ages__fields {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}


.vw-child-age-field {
    min-width: 0;
}


.vw-child-age-field label {
    display: block;

    margin-bottom: 5px;

    font-family: "Public Sans", sans-serif;

    font-size: 11px;
    font-weight: 600;

    color: var(--vw-text);
}


.vw-child-age-field select {
    width: 100%;
    height: 43px;

    padding: 0 11px;

    border: 1px solid #CCD6D0;
    border-radius: 8px;

    background: #FFFFFF;

    color: var(--vw-text);

    font-family: "Public Sans", sans-serif;

    font-size: 14px;

    outline: none;
}


.vw-child-age-field select:focus {
    border-color: var(--vw-green);

    box-shadow:
        0 0 0 3px rgba(11, 107, 58, 0.10);
}


/* ROOM DIVIDER */

.vw-guests-panel__divider {
    height: 8px;

    margin: 0 -28px;

    border-top: 1px solid #DDE4DF;
    border-bottom: 1px solid #DDE4DF;

    background: var(--vw-cream);
}


.vw-guest-row--rooms {
    border-bottom: 0;
}


/* SUMMARY */

.vw-guest-summary {
    max-width: 720px;

    margin: 13px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 13px;
    line-height: 1.5;

    font-weight: 600;

    color: var(--vw-green);
}


/* =========================================================
   STEP 3 MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-guests-panel {
        padding: 4px 16px;

        border-radius: 14px;
    }


    .vw-guest-row {
        min-height: 82px;

        gap: 12px;

        padding: 16px 0;
    }


    .vw-guest-row__info strong {
        font-size: 15px;
    }


    .vw-guest-row__info span {
        font-size: 11px;
    }


    .vw-counter {
        grid-template-columns: 38px 34px 38px;

        gap: 3px;
    }


    .vw-counter__button {
        width: 38px;
        height: 38px;

        font-size: 20px;
    }


    .vw-counter__value {
        min-width: 34px;

        font-size: 16px;
    }


    .vw-guests-panel__divider {
        margin-left: -16px;
        margin-right: -16px;
    }


    .vw-child-ages {
        margin-left: -5px;
        margin-right: -5px;

        padding: 15px 5px 18px;
    }


    .vw-child-ages__fields {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .vw-guest-summary {
        margin-top: 10px;

        font-size: 12px;
    }

}
/* =========================================================
   STEP 4 - INTERESTS
========================================================= */

.vw-interest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;

    max-width: 960px;
    margin: 0 auto;
}


.vw-interest-card {
    position: relative;

    min-width: 0;
    min-height: 185px;

    padding: 25px 17px 21px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 14px;

    background: var(--vw-white);
    color: var(--vw-text);

    text-align: center;

    font-family: "Public Sans", sans-serif;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {

    .vw-interest-card:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 8px 24px rgba(6, 76, 44, 0.08);
    }

}


.vw-interest-card:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.20);
    outline-offset: 3px;
}


.vw-interest-card__icon {
    width: 47px;
    height: 47px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}


.vw-interest-card__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.vw-interest-card__title {
    font-size: 15px;
    line-height: 1.35;

    font-weight: 700;

    color: var(--vw-dark-green);
}


.vw-interest-card__description {
    margin-top: 7px;

    font-size: 11px;
    line-height: 1.5;

    color: var(--vw-muted);
}


.vw-interest-card__check {
    position: absolute;

    top: 11px;
    right: 11px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* SELECTED */

.vw-interest-card.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 8px 26px rgba(6, 76, 44, 0.08);
}


.vw-interest-card.is-selected
.vw-interest-card__check {
    opacity: 1;
    transform: scale(1);
}


/* SUMMARY */

.vw-interest-summary {
    max-width: 900px;

    min-height: 22px;

    margin: 16px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 600;

    color: var(--vw-green);
}


/* =========================================================
   STEP 4 TABLET
========================================================= */

@media (max-width: 900px) {

    .vw-interest-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 700px;
    }

}


/* =========================================================
   STEP 4 MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-interest-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .vw-interest-card {
        min-height: 135px;

        padding: 18px 9px 15px;

        border-radius: 12px;
    }


    .vw-interest-card__icon {
        width: 37px;
        height: 37px;

        margin-bottom: 9px;
    }


    .vw-interest-card__title {
        font-size: 13px;
        line-height: 1.3;
    }


    .vw-interest-card__description {
        margin-top: 5px;

        font-size: 10px;
        line-height: 1.4;
    }


    .vw-interest-card__check {
        top: 7px;
        right: 7px;

        width: 21px;
        height: 21px;

        font-size: 11px;
    }


    .vw-interest-summary {
        margin-top: 11px;

        font-size: 11px;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 360px) {

    .vw-interest-card {
        min-height: 118px;
    }


    .vw-interest-card__description {
        display: none;
    }

}
/* =========================================================
   STEP 5 - STAY PREFERENCE
========================================================= */

.vw-stay-section {
    max-width: 960px;
    margin: 0 auto;
}

.vw-stay-section--features {
    margin-top: 30px;
}

.vw-stay-section__heading {
    margin-bottom: 14px;
    text-align: center;
}

.vw-stay-section__heading h2 {
    margin: 0;

    font-family: "Public Sans", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-stay-section__heading p {
    margin: 5px 0 0;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;

    color: var(--vw-muted);
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.vw-stay-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.vw-stay-category-card {
    position: relative;

    min-width: 0;
    min-height: 160px;

    padding: 23px 18px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 14px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vw-stay-category-card__icon {
    width: 43px;
    height: 43px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}

.vw-stay-category-card__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vw-stay-category-card__title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-stay-category-card__description {
    max-width: 230px;

    margin-top: 6px;

    font-size: 11px;
    line-height: 1.5;

    color: var(--vw-muted);
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.vw-stay-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.vw-stay-feature-card {
    position: relative;

    min-width: 0;
    min-height: 135px;

    padding: 20px 14px 17px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 13px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vw-stay-feature-card__icon {
    width: 36px;
    height: 36px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}

.vw-stay-feature-card__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vw-stay-feature-card__title {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-stay-feature-card__description {
    max-width: 235px;

    margin-top: 5px;

    font-size: 10.5px;
    line-height: 1.45;

    color: var(--vw-muted);
}


/* =========================================================
   CHECK MARK
========================================================= */

.vw-stay-card__check {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   SELECTED STATES
========================================================= */

.vw-stay-category-card.is-selected,
.vw-stay-feature-card.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 7px 22px rgba(6, 76, 44, 0.08);
}

.vw-stay-category-card.is-selected
.vw-stay-card__check,
.vw-stay-feature-card.is-selected
.vw-stay-card__check {
    opacity: 1;
    transform: scale(1);
}


/* HOVER */

@media (hover: hover) and (pointer: fine) {

    .vw-stay-category-card:hover,
    .vw-stay-feature-card:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 7px 22px rgba(6, 76, 44, 0.07);
    }

}


/* ACCESSIBILITY */

.vw-stay-category-card:focus-visible,
.vw-stay-feature-card:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.20);
    outline-offset: 3px;
}


/* =========================================================
   SUMMARY
========================================================= */

.vw-stay-summary {
    max-width: 900px;

    min-height: 22px;

    margin: 16px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;

    color: var(--vw-green);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vw-stay-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-stay-section--features {
        margin-top: 25px;
    }


    .vw-stay-section__heading h2 {
        font-size: 16px;
    }


    .vw-stay-section__heading p {
        font-size: 11px;
    }


    /*
     * Category cards are full width on mobile.
     * There are only three, so this remains clean.
     */

    .vw-stay-category-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .vw-stay-category-card {
        min-height: 105px;

        padding: 15px 45px 15px 68px;

        align-items: flex-start;

        text-align: left;
    }


    .vw-stay-category-card__icon {
        position: absolute;

        left: 17px;
        top: 50%;

        width: 36px;
        height: 36px;

        margin: 0;

        transform: translateY(-50%);
    }


    .vw-stay-category-card__title {
        font-size: 14px;
    }


    .vw-stay-category-card__description {
        margin-top: 4px;

        font-size: 10.5px;
    }


    /*
     * Six preference cards stay in a 2-column grid.
     */

    .vw-stay-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .vw-stay-feature-card {
        min-height: 125px;

        padding: 16px 8px 14px;
    }


    .vw-stay-feature-card__icon {
        width: 32px;
        height: 32px;

        margin-bottom: 7px;
    }


    .vw-stay-feature-card__title {
        font-size: 12.5px;
    }


    .vw-stay-feature-card__description {
        font-size: 9.5px;
        line-height: 1.4;
    }


    .vw-stay-card__check {
        top: 7px;
        right: 7px;

        width: 21px;
        height: 21px;

        font-size: 11px;
    }


    .vw-stay-summary {
        margin-top: 11px;

        font-size: 11px;
    }

}
/* =========================================================
   STEP 6 - GETTING TO WAYANAD
========================================================= */

.vw-journey-block {
    max-width: 960px;
    margin: 0 auto;
}

.vw-journey-block--transport {
    margin-top: 30px;
}

.vw-journey-block__heading {
    margin-bottom: 14px;
    text-align: center;
}

.vw-journey-block__heading h2,
.vw-journey-details__heading h2 {
    margin: 0;

    font-family: "Public Sans", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-journey-block__heading p,
.vw-journey-details__heading p {
    margin: 5px 0 0;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;

    color: var(--vw-muted);
}


/* =========================================================
   FORM FIELDS
========================================================= */

.vw-journey-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.vw-journey-field--main {
    max-width: 520px;
    margin: 0 auto;
}

.vw-journey-field label {
    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-journey-field label span {
    color: #B42318;
}

.vw-journey-field input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid var(--vw-border);
    border-radius: 10px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    font-size: 14px;

    color: var(--vw-dark-green);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vw-journey-field input::placeholder {
    color: #9A9A92;
}

.vw-journey-field input:focus {
    border-color: var(--vw-green);

    box-shadow:
        0 0 0 3px rgba(11, 107, 58, 0.10);
}


/* =========================================================
   TRANSPORT CARDS
========================================================= */

.vw-transport-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 11px;
}

.vw-transport-card {
    position: relative;

    min-width: 0;
    min-height: 155px;

    padding: 21px 10px 17px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 13px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vw-transport-card__icon {
    width: 38px;
    height: 38px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}

.vw-transport-card__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vw-transport-card__title {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-transport-card__description {
    margin-top: 5px;

    font-size: 9.5px;
    line-height: 1.45;

    color: var(--vw-muted);
}


/* =========================================================
   TRANSPORT CHECK
========================================================= */

.vw-transport-card__check {
    position: absolute;

    top: 8px;
    right: 8px;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 11px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.vw-transport-card.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 7px 22px rgba(6, 76, 44, 0.08);
}

.vw-transport-card.is-selected
.vw-transport-card__check {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   DYNAMIC JOURNEY DETAILS
========================================================= */

.vw-journey-details {
    max-width: 760px;

    margin: 28px auto 0;

    padding: 20px;

    border: 1px solid #DDE8E1;
    border-radius: 14px;

    background: #F7FAF8;
}

.vw-journey-details[hidden] {
    display: none !important;
}

.vw-journey-details__heading {
    margin-bottom: 16px;
    text-align: center;
}

.vw-journey-fields {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   JOURNEY SUMMARY
========================================================= */

.vw-journey-summary {
    min-height: 22px;

    margin: 16px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;

    color: var(--vw-green);
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .vw-transport-card:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 7px 22px rgba(6, 76, 44, 0.07);
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.vw-transport-card:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.20);
    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .vw-transport-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-journey-block--transport {
        margin-top: 24px;
    }

    .vw-journey-block__heading h2,
    .vw-journey-details__heading h2 {
        font-size: 16px;
    }

    .vw-journey-block__heading p,
    .vw-journey-details__heading p {
        font-size: 11px;
    }

    .vw-journey-field input {
        height: 46px;
        font-size: 13px;
    }


    /* Transport = 2 columns */

    .vw-transport-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .vw-transport-card {
        min-height: 135px;

        padding:
            18px 8px 14px;
    }

    .vw-transport-card__icon {
        width: 33px;
        height: 33px;

        margin-bottom: 8px;
    }

    .vw-transport-card__title {
        font-size: 12px;
    }

    .vw-transport-card__description {
        font-size: 9px;
        line-height: 1.4;
    }


    /*
     * Last card centred because there are
     * five transport options.
     */
    .vw-transport-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 5px);

        justify-self: center;
    }


    /* Dynamic fields stack */

    .vw-journey-details {
        margin-top: 22px;

        padding: 16px 12px;
    }

    .vw-journey-fields {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .vw-journey-summary {
        margin-top: 12px;

        font-size: 11px;
    }

}
/* =========================================================
   STEP 7 - BUDGET & FINAL DETAILS
========================================================= */

.vw-final-block {
    max-width: 900px;
    margin: 0 auto;
}

.vw-final-block--budget-type {
    margin-top: 28px;
}

.vw-final-block__heading {
    margin-bottom: 14px;
    text-align: center;
}

.vw-final-block__heading h2 {
    margin: 0;

    font-family: "Public Sans", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-final-block__heading p {
    margin: 5px 0 0;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;

    color: var(--vw-muted);
}


/* =========================================================
   BUDGET CARDS
========================================================= */

.vw-budget-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 11px;
}

.vw-budget-card {
    position: relative;

    min-height: 70px;

    padding: 14px 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 12px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vw-budget-card__amount {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}


/* =========================================================
   SELECTED CHECK
========================================================= */

.vw-budget-card__check,
.vw-budget-type-card__check {
    position: absolute;

    top: 8px;
    right: 8px;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vw-green);
    color: #FFFFFF;

    font-size: 11px;
    font-weight: 800;

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   SELECTED BUDGET
========================================================= */

.vw-budget-card.is-selected,
.vw-budget-type-card.is-selected {
    border: 2px solid var(--vw-green);

    background: #F2F8F4;

    box-shadow:
        0 7px 22px rgba(6, 76, 44, 0.08);
}

.vw-budget-card.is-selected
.vw-budget-card__check,
.vw-budget-type-card.is-selected
.vw-budget-type-card__check {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   BUDGET TYPE
========================================================= */

.vw-budget-type-grid {
    max-width: 650px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.vw-budget-type-card {
    position: relative;

    min-height: 100px;

    padding: 16px;

    display: flex;
    align-items: center;

    gap: 13px;

    appearance: none;

    border: 1px solid var(--vw-border);
    border-radius: 13px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vw-budget-type-card__icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vw-green);
}

.vw-budget-type-card__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vw-budget-type-card__content {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.vw-budget-type-card__content strong {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-budget-type-card__content small {
    font-size: 10px;
    line-height: 1.4;

    color: var(--vw-muted);
}


/* =========================================================
   FINAL CONTACT AREA
========================================================= */

.vw-final-contact {
    max-width: 650px;

    margin: 30px auto 0;

    padding: 22px;

    border: 1px solid #DDE8E1;
    border-radius: 15px;

    background: #F7FAF8;
}

.vw-final-contact__heading {
    margin-bottom: 17px;

    text-align: center;
}

.vw-final-contact__eyebrow {
    display: block;

    margin-bottom: 5px;

    font-family: "Public Sans", sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 0.12em;

    color: var(--vw-green);
}

.vw-final-contact__heading h2 {
    margin: 0;

    font-family: "Fraunces", serif;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;

    color: var(--vw-dark-green);
}

.vw-final-contact__heading p {
    max-width: 520px;

    margin: 7px auto 0;

    font-family: "Public Sans", sans-serif;
    font-size: 11px;
    line-height: 1.55;

    color: var(--vw-muted);
}


/* =========================================================
   NAME FIELD
========================================================= */

.vw-final-name-field {
    max-width: 480px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.vw-final-name-field label {
    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    color: var(--vw-dark-green);
}

.vw-final-name-field label span {
    color: #B42318;
}

.vw-final-name-field input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid var(--vw-border);
    border-radius: 10px;

    background: #FFFFFF;

    font-family: "Public Sans", sans-serif;
    font-size: 14px;

    color: var(--vw-dark-green);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vw-final-name-field input::placeholder {
    color: #9A9A92;
}

.vw-final-name-field input:focus {
    border-color: var(--vw-green);

    box-shadow:
        0 0 0 3px rgba(11, 107, 58, 0.10);
}


/* =========================================================
   FINAL SUMMARY
========================================================= */

.vw-final-summary {
    min-height: 22px;

    margin: 14px auto 0;

    text-align: center;

    font-family: "Public Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;

    color: var(--vw-green);
}


/* =========================================================
   FINAL CTA
========================================================= */

.vw-planner__continue--final {
    min-width: 215px;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .vw-budget-card:hover,
    .vw-budget-type-card:hover {
        border-color: #8AB59D;

        transform: translateY(-2px);

        box-shadow:
            0 7px 22px rgba(6, 76, 44, 0.07);
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.vw-budget-card:focus-visible,
.vw-budget-type-card:focus-visible {
    outline: 3px solid rgba(11, 107, 58, 0.20);
    outline-offset: 3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vw-final-block__heading h2 {
        font-size: 16px;
    }

    .vw-final-block__heading p {
        font-size: 11px;
    }


    /* Budget = 2 columns */

    .vw-budget-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .vw-budget-card {
        min-height: 62px;

        padding: 12px 8px;
    }

    .vw-budget-card__amount {
        font-size: 11.5px;
    }


    /* Budget type remains 2 columns */

    .vw-budget-type-grid {
        gap: 9px;
    }

    .vw-budget-type-card {
        min-height: 110px;

        padding: 14px 9px;

        flex-direction: column;
        justify-content: center;

        gap: 7px;

        text-align: center;
    }

    .vw-budget-type-card__icon {
        width: 31px;
        height: 31px;

        flex-basis: 31px;
    }

    .vw-budget-type-card__content strong {
        font-size: 12px;
    }

    .vw-budget-type-card__content small {
        font-size: 9px;
    }


    /* Contact */

    .vw-final-contact {
        margin-top: 24px;

        padding: 18px 12px;
    }

    .vw-final-contact__heading h2 {
        font-size: 19px;
    }

    .vw-final-contact__heading p {
        font-size: 10.5px;
    }

    .vw-final-name-field input {
        height: 46px;

        font-size: 13px;
    }


    .vw-final-summary {
        font-size: 11px;
    }


    .vw-planner__continue--final {
        min-width: 0;
    }

}