:root {
    --black: #0A2342;
    --deep-navy: #0A2342;
    --navy: #0A2342;
    --maple-red: #C8102E;
    --teal: #0E5B5B;
    --warm-sand: #E8DDC4;
    --antique-gold: #C9A961;
    --gold: #C9A961;
    --white: #fff;
    --limestone-ivory: #F5EFE6;
    --charcoal: #1F1F1F;
    --muted: #5A5A5A;
    --shadow: 0 20px 45px rgba(10, 35, 66, 0.08);
    --heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --serif-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --serif-body: 'Source Serif 4', Georgia, serif;
    --ui: 'Inter', Arial, sans-serif;
    --container: min(1180px, calc(100% - 48px));
}



* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--limestone-ivory);
    color: var(--charcoal);
    font-family: var(--serif-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.c4t-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 92px;
    padding: 22px clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 239, 230, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(10, 35, 66, 0.08);
}

.c4t-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.c4t-logo-main {
    font-family: var(--serif-display);
    font-size: clamp(27px, 3vw, 37px);
    line-height: 0.92;
    color: var(--deep-navy);
    letter-spacing: -0.045em;
    position: relative;
}

.c4t-logo-main::after {
    content: '✦';
    color: var(--maple-red);
    font-size: 13px;
    position: absolute;
    top: -3px;
    right: 27%;
}

.c4t-logo-sub {
    font-family: var(--ui);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.56em;
    color: var(--deep-navy);
    margin-left: 8px;
}

.c4t-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.3vw, 38px);
}

.c4t-nav a {
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--deep-navy);
    position: relative;
    padding: 8px 0;
}

.c4t-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--antique-gold);
    transition: width 0.28s ease;
}

.c4t-nav a:hover::after {
    width: 100%;
}

.c4t-menu-toggle {
    display: none;
}

.c4t-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.c4t-hero-media,
.c4t-hero-overlay {
    position: absolute;
    inset: 0;
}

.c4t-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c4t-hero-overlay {
    background: linear-gradient(90deg, rgba(10, 35, 66, 0.76) 0%, rgba(10, 35, 66, 0.46) 38%, rgba(10, 35, 66, 0.03) 72%);
}

.c4t-hero-content {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    padding: clamp(64px, 10vw, 130px) 0;
    color: var(--white);
}

.c4t-eyebrow {
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-sand);
    margin: 0 0 18px;
}

.c4t-eyebrow.navy {
    color: var(--deep-navy);
}

.c4t-hero h1 {
    font-family: var(--serif-display);
    font-size: clamp(58px, 11vw, 138px);
    line-height: 0.84;
    max-width: 640px;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin: 0 0 26px;
}

.c4t-hero-content>p:not(.c4t-eyebrow) {
    max-width: 380px;
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
}

.c4t-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
}

.c4t-link-arrow::after {
    content: '';
    width: 52px;
    height: 1px;
    background: var(--antique-gold);
}

.c4t-link-arrow span {
    color: var(--antique-gold);
}

.c4t-intro {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) 0 clamp(58px, 8vw, 100px);
    text-align: center;
    padding-top: 0;
}

.c4t-ornament {
    display: inline-flex;
    width: 100%;
    height: 16px;
    margin-bottom: 20px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.c4t-ornament::before,
.c4t-ornament::after {
    content: '';
    height: 1px;
    width: 44px;
    background: var(--antique-gold);
}

.c4t-ornament::before {
    margin-right: 10px;
}

.c4t-ornament::after {
    margin-left: 10px;
}

.c4t-ornament {
    color: var(--antique-gold);
}

.c4t-ornament::selection {
    background: transparent;
}

.c4t-ornament::marker {
    display: none;
}

.c4t-ornament:empty::before {
    content: '';
}

.c4t-ornament:empty {
    font-size: 0;
}

.c4t-ornament:empty::after {
    content: '';
}

.c4t-intro .c4t-ornament::before {
    box-shadow: 57px 0 0 -55px var(--antique-gold);
}

.c4t-intro h2,
.c4t-section-head h2,
.c4t-dest-copy h2,
.c4t-experience-copy h2,
.c4t-cta h2 {
    font-family: var(--serif-display);
    color: var(--deep-navy);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.c4t-intro h2 {
    max-width: 720px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: 1.03;
}

.c4t-intro p {
    max-width: 660px;
    margin: 0 auto;
    font-size: 20px;
    color: rgba(31, 31, 31, 0.78);
}

.c4t-featured {
    width: var(--container);
    margin: 0 auto;
    padding: 22px 0 clamp(74px, 9vw, 120px);
}

.c4t-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.c4t-section-head h2 {
    font-size:clamp(38px, 5.4vw, 66px);
    line-height: 1;
    margin: 0 0 12px;
}

.c4t-section-head p {
    margin: 0;
    color: rgba(31, 31, 31, 0.72);
    font-size: 18px;
}

.c4t-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 38px);
}

.c4t-journey-card a {
    display: block;
}

.c4t-journey-card img {
    aspect-ratio: 1 / 1.08;
    width: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.02);
    transition: transform .55s ease, filter .55s ease;
}

.c4t-journey-card:hover img {
    transform: translateY(-6px);
    filter: saturate(1) contrast(1.05);
}

.c4t-card-body {
    text-align: center;
    padding: 22px 8px 0;
}

.c4t-card-body h3 {
    font-family: var(--serif-display);
    font-size: clamp(24px, 2.3vw, 33px);
    line-height: 1;
    color: var(--deep-navy);
    margin: 0 0 7px;
    font-weight: 600;
}

.c4t-card-body p {
    margin: 0;
    font-family: var(--ui);
    font-size: 10px;
    font-weight: 800;
    color: rgba(31, 31, 31, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c4t-card-body::after {
    content: '';
    display: block;
    width: 58px;
    height: 1px;
    background: var(--antique-gold);
    margin: 15px auto 0;
}

.c4t-destinations {
    background: var(--warm-sand);
    padding: clamp(62px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3px, 5vw, 0px);
    align-items: center;
}

/* .c4t-dest-copy {
    padding-inline: 24px;
} */

.c4t-dest-copy h2,
.c4t-experience-copy h2 {
    font-size:clamp(38px, 5.4vw, 66px);
    line-height: 0.98;
    margin: 0 0 20px;
}

.c4t-dest-copy p,
.c4t-experience-copy li {
    font-size: 19px;
    color: rgba(31, 31, 31, 0.78);
}

.c4t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    min-height: 50px;
    padding: 0 26px;
    background: var(--deep-navy);
    color: var(--white);
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    border: 1px solid var(--deep-navy);
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.c4t-btn:hover {
    background: transparent;
    color: var(--deep-navy);
}

.c4t-btn.light {
    background: var(--limestone-ivory);
    color: var(--deep-navy);
    border-color: var(--limestone-ivory);
}

.c4t-btn.light:hover {
    background: transparent;
    color: var(--limestone-ivory);
}

.c4t-dest-list {
    display: grid;
    gap: 14px;
    padding-inline: 24px;
}

.c4t-dest-list div {
    background: rgba(245, 239, 230, 0.72);
    border: 1px solid rgba(10, 35, 66, 0.09);
    padding: 26px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px 18px;
    align-items: baseline;
}

.c4t-dest-list span {
    font-family: var(--ui);
    color: var(--antique-gold);
    font-weight: 800;
    letter-spacing: .14em;
}

.c4t-dest-list strong {
    font-family: var(--serif-display);
    color: var(--deep-navy);
    font-size: 34px;
    font-weight: 600;
}

.c4t-dest-list small {
    grid-column: 2;
    font-family: var(--ui);
    color: rgba(31, 31, 31, 0.62);
    font-weight: 600;
    letter-spacing: .05em;
}

.c4t-experience {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(76px, 9vw, 130px) 0;
    display: grid;
    grid-template-columns: 0.96fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.c4t-experience-image img {
    aspect-ratio: 0.88 / 1;
    width: 100%;
    object-fit: cover;
}

.c4t-experience-copy ul {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 15px;
}

.c4t-experience-copy li {
    border-bottom: 1px solid rgba(201, 169, 97, 0.45);
    padding-bottom: 15px;
}

.c4t-experience-copy li::before {
    content: '✦';
    color: var(--maple-red);
    margin-right: 10px;
    font-size: 11px;
}

.c4t-journal {
    width: var(--container);
    margin: 0 auto;
    /* padding: 0 0 clamp(76px, 9vw, 126px); */
}

.c4t-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.c4t-journal article {
    background: var(--white);
    border: 1px solid rgba(10, 35, 66, 0.08);
    padding: clamp(24px, 3vw, 36px);
    height: 556px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.c4t-journal span {
    font-family: var(--ui);
    color: var(--maple-red);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 800;
}

.c4t-journal h3 {
    font-family: var(--serif-display);
    color: var(--deep-navy);
    font-size: 33px;
    line-height: 1.02;
    font-weight: 600;
    margin: 20px 0;
    /* height: 42px; */
}

.c4t-journal a {
    font-family: var(--ui);
    color: var(--deep-navy);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 800;
}

.c4t-cta {
    background: var(--deep-navy);
    color: var(--white);
    text-align: center;
    padding: clamp(68px, 8vw, 100px) 24px;
}

.c4t-cta h2 {
    color: var(--white);
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: 1;
    margin: 0 0 10px;
}

.c4t-cta p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0 0 14px;
    font-size: 19px;
}

.c4t-ornament.light::before,
.c4t-ornament.light::after {
    background: var(--antique-gold);
}

.c4t-footer {
    padding: 34px clamp(18px, 4vw, 64px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    background: var(--limestone-ivory);
    color: var(--deep-navy);
}

.footer-logo {
    align-items: flex-start;
}

.c4t-footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.c4t-footer-links a,
.c4t-footer p {
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.c4t-footer p {
    text-align: right;
    margin: 0;
    color: rgba(10, 35, 66, 0.66);
}

@media (max-width: 1024px) {
    :root {
        --container: min(100% - 36px, 920px);
    }

    .c4t-header {
        min-height: 82px;
    }

    .c4t-nav {
        gap: 18px;
    }

    .c4t-nav a {
        font-size: 10px;
        letter-spacing: .13em;
    }

    /* .c4t-hero {
        min-height: 720px;
    } */

    .c4t-destinations,
    .c4t-experience {
        grid-template-columns: 1fr;
    }

    .c4t-dest-copy,
    .c4t-dest-list {
        padding-inline: 18px;
    }

    .c4t-experience-image {
        max-width: 620px;
    }

    .c4t-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .c4t-footer p {
        text-align: center;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 620px);
    }

    body {
        line-height: 1.58;
    }

    .c4t-header {
        min-height: 74px;
        padding: 16px 18px;
    }

    .c4t-logo-main {
        font-size: 28px;
    }

    .c4t-logo-sub {
        font-size: 8px;
        letter-spacing: .42em;
    }

    .c4t-menu-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(10, 35, 66, .16);
        background: transparent;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
    }

    .c4t-menu-toggle span {
        width: 20px;
        height: 1px;
        background: var(--deep-navy);
    }

    .c4t-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--limestone-ivory);
        border-bottom: 1px solid rgba(10, 35, 66, .1);
        padding: 18px;
        display: grid;
        gap: 8px;
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }

    .c4t-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .c4t-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(10, 35, 66, .08);
    }

    /* .c4t-hero {
        min-height: calc(100vh - 74px);
        align-items: end;
    } */

    .c4t-hero-overlay {
        background: linear-gradient(0deg, rgba(10, 35, 66, .86) 0%, rgba(10, 35, 66, .52) 48%, rgba(10, 35, 66, .08) 100%);
    }

    .c4t-hero-content {
        padding: 42px 0 54px;
    }

    .c4t-hero h1 {
        max-width: 360px;
    }

    .c4t-journey-grid,
    .c4t-journal-grid {
        grid-template-columns: 1fr;
    }

    .c4t-journey-card img {
        aspect-ratio: 1.16 / 1;
    }

    .c4t-intro p,
    .c4t-section-head p,
    .c4t-dest-copy p,
    .c4t-experience-copy li {
        font-size: 17px;
    }

    .c4t-destinations {
        padding-inline: 0;
    }

    .c4t-dest-list div {
        grid-template-columns: 42px 1fr;
        padding: 20px;
    }

    .c4t-dest-list strong {
        font-size: 28px;
    }

    .c4t-experience {
        padding-top: 64px;
    }

    .c4t-journal article {
        min-height: 210px;
        height: 496px;
    }

    .c4t-footer-links {
        display: grid;
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .c4t-hero h1 {
        font-size: 56px;
    }

    .c4t-dest-copy h2,
    .c4t-experience-copy h2,
    .c4t-cta h2 {
        font-size: 40px;
    }

    .c4t-btn {
        width: 100%;
    }
}

.c4t-journeys-showcase {
    background: #F5EFE6;
    padding: clamp(72px, 9vw, 130px) 20px;
    color: #0A2342;
}

.c4t-journeys-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.c4t-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(42px, 6vw, 72px);
}

.c4t-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #C9A961;
    margin-bottom: 14px;
}

.c4t-eyebrow::before,
.c4t-eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: #C9A961;
}

.c4t-section-head h2 {
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.035em;
    margin: 0 0 18px;
}

.c4t-section-head p {
    font-family: "Source Serif Pro", Georgia, serif;
    color: #1F1F1F;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.c4t-journeys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 34px);
    align-items: stretch;
}

.c4t-journey-card {
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(201, 169, 97, .28);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
}

.c4t-journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(10, 35, 66, .14);
    border-color: rgba(201, 169, 97, .58);
}

.c4t-featured-card {
    transform: translateY(-18px);
}

.c4t-featured-card:hover {
    transform: translateY(-26px);
}

.c4t-journey-image {
    display: block;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #E8DDC4;
}

.c4t-journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.88) contrast(1.02);
    transition: transform .7s ease, filter .7s ease;
}

.c4t-journey-card:hover .c4t-journey-image img {
    transform: scale(1.055);
    filter: saturate(1) contrast(1.05);
}

.c4t-journey-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 35, 66, 0) 45%,
            rgba(10, 35, 66, .55) 100%);
    pointer-events: none;
}

.c4t-card-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    background: rgba(245, 239, 230, .92);
    color: #0A2342;
    border: 1px solid rgba(201, 169, 97, .45);
    padding: 9px 12px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.c4t-journey-body {
    padding: 28px 26px 26px;
}

.c4t-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.c4t-card-meta span {
    font-family: Inter, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #9A9A9A;
}

.c4t-card-meta span+span::before {
    content: "•";
    color: #C9A961;
    margin-right: 9px;
}

.c4t-journey-body h3 {
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 36px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.025em;
    margin: 0 0 14px;
    height: 100px;
}

.c4t-journey-body h3 a {
    color: #0A2342;
    text-decoration: none;
}

.c4t-journey-body p {
    font-family: "Source Serif Pro", Georgia, serif;
    color: #1F1F1F;
    font-size: 15.5px;
    line-height: 1.72;
    margin: 0 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c4t-card-footer {
    border-top: 1px solid rgba(201, 169, 97, .34);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.c4t-price-label {
    display: block;
    font-family: Inter, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #9A9A9A;
    margin-bottom: 3px;
}

.c4t-card-footer strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: #0A2342;
}

.c4t-card-link {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    text-decoration: none;
    color: #0A2342;
    position: relative;
    white-space: nowrap;
}

.c4t-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: #C9A961;
    transition: transform .3s ease;
    transform-origin: left;
}

.c4t-card-link:hover::after {
    transform: scaleX(.55);
}

.c4t-journeys-action {
    text-align: center;
    margin-top: clamp(42px, 6vw, 74px);
}

.c4t-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    background: #0A2342;
    color: #F5EFE6;
    text-decoration: none;
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid #0A2342;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.c4t-primary-btn:hover {
    background: transparent;
    color: #0A2342;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .c4t-journeys-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c4t-featured-card {
        transform: none;
    }

    .c4t-featured-card:hover {
        transform: translateY(-8px);
    }

    .c4t-journey-image {
        aspect-ratio: 16 / 15;
    }
}

@media (max-width: 680px) {
    .c4t-journeys-showcase {
        padding: 37px 16px;
    }

    .c4t-section-head {
        text-align: left;
        margin-bottom: 34px;
    }

    .c4t-eyebrow::after {
        display: none;
    }

    .c4t-section-head h2 {
        font-size: 46px;
    }

    .c4t-journeys-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .c4t-journey-image {
        aspect-ratio: 1 / .82;
    }

    .c4t-journey-body {
        padding: 23px 20px 22px;
    }

    .c4t-card-footer {
        align-items: center;
    }

    .c4t-card-footer strong {
        font-size: 28px;
    }

    .c4t-primary-btn {
        width: 100%;
    }
}

.c4t-journal-upgraded .c4t-section-head p {
    max-width: 560px;
    margin-inline: auto;
}

.c4t-journal-upgraded .c4t-journal-grid {
    gap: 26px;
}

.c4t-journal-card {
    background: var(--white);
    border: 1px solid rgba(10, 35, 66, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: .35s ease;
}

.c4t-journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(10, 35, 66, .12);
}

.c4t-journal-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    filter: saturate(.86) contrast(1.02);
    height: 208px;
}

.c4t-journal-card div {
    padding: 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c4t-cta-upgraded {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    padding: 0;
    min-height: 540px;
    text-align: left;
}

.c4t-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.05);
}

.c4t-cta-content {
    padding: clamp(56px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.c4t-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 999;
    display: grid;
    gap: 10px;
}

.c4t-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--ui);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(10, 35, 66, .22);
}

.c4t-float-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.c4t-float-btn.chat {
    background: var(--deep-navy);
    color: var(--limestone-ivory);
}

@media (max-width: 760px) {
    .c4t-cta-upgraded {
        grid-template-columns: 1fr;
    }

    .c4t-cta-media {
        height: 320px;
    }

    .c4t-cta-content {
        padding: 48px 22px;
        text-align: center;
        align-items: center;
    }

    .c4t-journal-card div {
        min-height: auto;
        padding: 24px;
    }

    .c4t-floating-actions {
        right: 14px;
        bottom: 16px;
    }

    .c4t-float-btn {
        width: 54px;
        height: 54px;
        font-size: 8px;
    }
}

.c4t-faq-section {
    width: var(--container);
    margin: 0 auto;
    padding: clamp(72px, 8vw, 110px) 0;
}

.c4t-faq-head {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 42px;
}

.c4t-faq-head h2 {
    font-family: var(--serif-display);
    color: var(--deep-navy);
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.035em;
    margin: 0 0 14px;
}

.c4t-faq-head p:last-child {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(31, 31, 31, .72);
    font-size: 18px;
}

.c4t-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
    /* Fixes grid item stretching vertically when adjacent items open */
}

/* FAQ toggle button styling */
.c4t-faq-action {
    text-align: center;
    margin-top: 38px;
}

#faqToggleBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: var(--deep-navy);
    color: #fff;
    border: 1px solid var(--deep-navy);
    padding: 14px 28px;
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#faqToggleBtn:hover {
    background: transparent;
    color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.1);
}

.faq-btn-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-btn-icon.rotated {
    transform: rotate(180deg);
}

#faqToggleBtn * {
    pointer-events: none;
    /* Make clicking any child (span/svg) trigger the parent button click directly */
}

/* Smooth fade-in animation for toggled FAQ items */
.faq-item-hidden {
    display: none !important;
}

.faq-fade-in {
    animation: faqItemFadeIn 0.4s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes faqItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c4t-faq-grid details {
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(10, 35, 66, .09);
    padding: 0;
    transition: .25s ease;
}

.c4t-faq-grid details[open] {
    background: #fff;
    box-shadow: 0 24px 60px rgba(10, 35, 66, .08);
}

.c4t-faq-grid summary {
    cursor: pointer;
    list-style: none;
    padding: 24px 16px;
    font-family: var(--serif-display);
    color: var(--deep-navy);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.05;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.c4t-faq-grid summary::-webkit-details-marker {
    display: none;
}

.c4t-faq-grid summary::after {
    content: "+";
    color: var(--antique-gold);
    font-family: var(--ui);
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.c4t-faq-grid details[open] summary::after {
    content: "+";
}

.c4t-faq-grid p {
    margin: 0;
    padding: 0 26px 26px;
    color: rgba(31, 31, 31, .72);
    font-size: 17px;
}

@media (max-width: 760px) {
    .c4t-faq-section {
        padding: 38px 0;
    }

    .c4t-faq-head {
        text-align: left;
    }

    .c4t-faq-grid {
        grid-template-columns: 1fr;
    }

    .c4t-faq-grid summary {
        padding: 22px;
        font-size: 27px;
    }

    .c4t-faq-grid p {
        padding: 0 22px 22px;
    }
}

.c4t-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #f5efe6;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: .55s cubic-bezier(.22, .61, .36, 1);
}

.c4t-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.c4t-mobile-menu-inner {
    display: grid;
    grid-template-columns: 1fr 42%;
    height: 100vh;
}

.c4t-mobile-left {
    padding: 36px 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c4t-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c4t-mobile-logo img {
    max-width: 190px;
    height: auto;
}

.c4t-mobile-close {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(10, 35, 66, .12);
    background: transparent;
    position: relative;
    cursor: pointer;
}

.c4t-mobile-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #0A2342;
    left: 50%;
    top: 50%;
}

.c4t-mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.c4t-mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.c4t-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.c4t-mobile-nav a {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 56px);
    color: #0A2342;
    text-decoration: none;
    line-height: 1;
    transition: .25s ease;
}

.c4t-mobile-nav a:hover {
    transform: translateX(8px);
    color: #C9A961;
}

.c4t-mobile-social {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.c4t-mobile-social a {
    text-decoration: none;
    color: rgba(10, 35, 66, .75);
    font-family: Inter, sans-serif;
    letter-spacing: .12em;
    font-size: 12px;
    text-transform: uppercase;
}

.c4t-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border: 1px solid #C9A961;
    text-decoration: none;
    color: #0A2342;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 20px;
}

.c4t-mobile-right {
    position: relative;
    overflow: hidden;
}

.c4t-mobile-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.75);
}

.c4t-mobile-overlay-text {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 60px;
    color: white;
}

.c4t-mobile-overlay-text p {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.c4t-mobile-overlay-text h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;
}

@media (max-width: 991px) {
    .c4t-mobile-menu-inner {
        grid-template-columns: 1fr;
    }

    .c4t-mobile-right {
        display: none;
    }

    .c4t-mobile-left {
        padding: 26px 24px 36px;
    }

    .c4t-mobile-nav a {
        font-size: 44px;
    }

    .c4t-mobile-logo img {
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .c4t-mobile-nav a {
        font-size: 34px;
    }

    .c4t-mobile-close {
        width: 52px;
        height: 52px;
    }
}

/* Header Logo Fix - Desktop + Mobile */
.c4t-header {
    min-height: 88px;
    padding: 16px clamp(18px, 4vw, 54px);
}

.c4t-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.c4t-logo img {
    width: clamp(190px, 18vw, 280px);
    max-height: 62px;
    height: auto;
    object-fit: contain;
}

.c4t-nav {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .c4t-header {
        min-height: 78px;
        padding: 14px 18px;
    }

    .c4t-logo img {
        width: 210px;
        max-height: 58px;
    }
}

@media (max-width: 760px) {
    .c4t-header {
        min-height: 82px;
        padding: 12px 16px;
    }

    .c4t-logo img {
        width: clamp(190px, 64vw, 260px);
        max-height: 58px;
    }

    .c4t-menu-toggle {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
}

@media (max-width: 420px) {
    .c4t-logo img {
        width: 205px;
        max-height: 54px;
    }

    .c4t-header {
        gap: 10px;
    }
}

/* =========================================================
   FINAL POLISH: Header, Mobile Menu, CTA Watermark, Floating Buttons
   ========================================================= */

body.menu-open {
    overflow: hidden;
}

.c4t-header {
    min-height: 84px;
    padding: 14px clamp(18px, 3.5vw, 54px);
}

.c4t-header .c4t-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: 0;
}

.c4t-header .c4t-logo img {
    display: block;
    width: clamp(210px, 15vw, 275px);
    max-height: 62px;
    height: 62px;
    object-fit: contain;
    width: 275px;
}

.c4t-nav {
    margin-left: auto;
}

/* Mobile header */
@media (max-width: 760px) {
    .c4t-header {
        min-height: 82px;
        padding: 12px 16px;
        gap: 12px;
    }

    .c4t-header .c4t-logo img {
        width: clamp(195px, 64vw, 255px);
        max-height: 58px;
    }

    .c4t-menu-toggle {
        display: inline-flex;
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        border: 1px solid rgba(10, 35, 66, .16);
        background: rgba(245, 239, 230, .65);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
    }

    .c4t-menu-toggle span {
        width: 22px;
        height: 1px;
        background: var(--deep-navy);
    }

    .c4t-nav {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .c4t-header .c4t-logo img {
        width: 205px;
        max-height: 54px;
    }
}

.c4t-mobile-menu {
    z-index: 99999;
}

.c4t-mobile-menu-inner {
    min-height: 100vh;
}

.c4t-mobile-left {
    overflow-y: auto;
}

.c4t-mobile-logo img {
    width: clamp(180px, 44vw, 260px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.c4t-mobile-close {
    flex-shrink: 0;
}

.c4t-cta-upgraded {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.c4t-cta-upgraded::before {
    content: "";
    position: absolute;
    right: 4.5%;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: clamp(280px, 28vw, 520px);
    height: clamp(280px, 28vw, 520px);
    background-image: url("../images/c4t-watermark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .055;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(100%) brightness(1.3) contrast(.95);
}

.c4t-cta-upgraded>* {
    position: relative;
    z-index: 2;
}

.c4t-cta-content {
    position: relative;
}

.c4t-cta-content::after {
    content: "";
    position: absolute;
    inset: 12%;
    background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, .12), transparent 55%);
    z-index: -1;
    pointer-events: none;
}

.c4t-floating-actions {
    left: 20px;
    bottom: 22px;
    z-index: 999;
    right: auto;
}

.c4t-float-btn {
    width: 54px;
    height: 54px;
    font-size: 8px;
}

.c4t-float-btn.chat {
    background: rgba(10, 35, 66, .94);
}

@media (max-width: 760px) {
    .c4t-cta-upgraded::before {
        width: 290px;
        height: 290px;
        right: -95px;
        top: 55%;
        transform: translateY(-50%) rotate(-13deg);
        opacity: .04;
    }

    .c4t-cta-content {
        min-height: 430px;
    }

    .c4t-floating-actions {
        right: 12px;
        bottom: 82px;
        gap: 8px;
    }

    .c4t-float-btn {
        width: 50px;
        height: 50px;
        font-size: 8px;
        box-shadow: 0 12px 32px rgba(10, 35, 66, .18);
    }
}

@media (max-width: 576px) {
    .c4t-mobile-left {
        padding: 24px 22px 30px;
    }

    .c4t-mobile-nav {
        gap: 16px;
        margin-top: 24px;
    }

    .c4t-mobile-nav a {
        font-size: 35px;
    }

    .c4t-mobile-social {
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
    }

    .c4t-mobile-cta {
        width: 100%;
        text-align: center;
    }
}

.footer-logo img {
    max-width: 210px;
    height: auto;
}

.c4t-cta-upgraded {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #0A2342;
}

.c4t-cta-upgraded::before {
    content: "";
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    width: 420px;
    height: 420px;

    background-image: url("../images/c4t-watermark.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0.25;

    pointer-events: none;
    z-index: 1;

    filter:
        grayscale(100%) brightness(1.5) contrast(1.1);
}

.c4t-cta-upgraded>* {
    position: relative;
    z-index: 3;
}

@media (max-width: 991px) {
    .c4t-cta-upgraded::before {
        width: 300px;
        height: 300px;
        right: -40px;
        opacity: 0.08;
    }
}

/* Desktop hero image position fix */
@media (min-width: 761px) {
    .c4t-hero-media img {
        object-position: center 40%;
    }
}

.nav-enquire {
    border: 1px solid var(--charcoal);
    padding: 11px 7px !important;
}


/*=========================================================
   Start Scroll To Top
=========================================================*/
#scroll-percentage {
    position: absolute;
}

.scroll-top {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
}

.scroll-top.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
    transition: 0.3s;
}

.scroll-top-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: #c8102ec2;
    color: #ffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
}

.scroll-top-value i {
    font-size: 20px;
}

.scroll-top * {
    pointer-events: none;
}

@-webkit-keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scroll-Top {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/*=========================================================
   End  Scroll To Top
=========================================================*/

/*=========================================================
   Start Premium Bottom Mobile Navigation Menu
=========================================================*/
.menu__mobile {
    display: none;
}

@media (max-width: 760px) {

    body {
        padding-bottom: 74px !important;
    }

    .c4t-hero {
        min-height: 438px;
        align-items: center;
    }

    .menu__mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        background: rgba(10, 35, 66, 0.97);
        /* Luxurious Deep Navy */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 169, 97, 0.35);
        /* Antique Gold accent line */
        box-shadow: 0 -8px 32px rgba(10, 35, 66, 0.25);
        padding: 10px 12px clamp(10px, 3.5vw, 18px);
        /* Responsive bottom padding for notch screens */
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .c4t-footer {
        padding-bottom: 90px;
    }

    .c4t-floating-actions {
        display: none;
    }

    .menu-mobile-fixed {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .menu-mobile-fixed a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        text-align: center;
        color: rgba(245, 239, 230, 0.7);
        /* Limestone Ivory with opacity */
        font-family: var(--ui);
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        text-decoration: none;
        gap: 5px;
        transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .menu-mobile-fixed a img {
        height: 21px;
        width: 21px;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1) opacity(0.7);
        transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .menu-mobile-fixed a:hover,
    .menu-mobile-fixed a:focus {
        color: var(--white);
    }

    .menu-mobile-fixed a:hover img {
        filter: brightness(0) invert(1) opacity(1);
        transform: translateY(-2px);
    }

    .menu-mobile-fixed a[href*="tailorMade"] {
        color: var(--antique-gold) !important;
        font-weight: 700;
    }

    .menu-mobile-fixed a[href*="wa.me"]:hover img {
        filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.9)) brightness(0) invert(1) opacity(1);
    }

    .c4t-floating-actions {
        display: none !important;
    }

    .scroll-top.active {
        bottom: 85px !important;
        right: 20px !important;
        height: 50px !important;
        width: 50px !important;
    }

    .c4t-intro {
        padding-top: 0;
        padding-bottom: 32px;
    }
}

/*=========================================================
   End Premium Bottom Mobile Navigation Menu
=========================================================*/

button,
.c4t-btn,
.c4t-primary-btn,
.c4t-float-btn,
.scroll-top,
.menu-mobile-fixed a,
.c4t-menu-toggle,
.c4t-mobile-close,
.c4t-mobile-cta,
.c4t-faq-grid summary {
    cursor: pointer !important;
}

.c4t-btn *,
.c4t-primary-btn *,
.c4t-float-btn *,
.scroll-top *,
.menu-mobile-fixed a *,
.c4t-menu-toggle *,
.c4t-mobile-close *,
.c4t-mobile-cta * {
    pointer-events: none !important;
}



/* About page ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â extends main.css */
.responsive-cover-picture,
.responsive-cover-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.responsive-cover-picture img {
    object-fit: cover;
    filter: saturate(.84) contrast(1.05)
}

.about-hero {
    /* min-height: 640px; */
    position: relative;
    display: grid;
    align-items: start;
    color: var(--white);
    overflow: hidden;
    background: var(--limestone-ivory);
}

.about-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .42) 45%, rgba(0, 0, 0, .12)), linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .05) 58%)
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    padding: 97px 0 90px;
}

.about-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
    font-family: var(--ui);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78)
}

.about-breadcrumb span:last-child {
    color: var(--white)
}

.about-hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 108px);
    line-height: .98;
    letter-spacing: -.075em;
    font-weight: 600;
    max-width: 820px;
    margin: 20px 0 24px
}

.about-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 20px
}

.c4t-journey-image {
    height: 400px;
    width: 100%;
}



::-webkit-scrollbar-thumb {
    background-color: var(--antique-gold);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0 0 0 / 0.3);
}

::-webkit-scrollbar-button {
    background-color: var(--antique-gold);
    height: 15px;
    display: none;
}

/* â”€â”€ Floating buttons: icon images â”€â”€ */
.c4t-float-btn {
    font-size: 0;
    color: transparent;
}

.c4t-float-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}




.testimonial-section {
    padding: 80px 0 51px;
    position: relative;
    width: var(--container);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(248, 242, 232, 0.84) 0%, rgba(245, 239, 230, 0.7) 100%);
    border-radius: 40px;
}

.testimonial-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.testimonial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.testimonial-kicker::before,
.testimonial-kicker::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.testimonial-head h2 {
    font-family: var(--heading);
    font-size: clamp(38px, 5.4vw, 66px);
    color: var(--navy);
    line-height: 1.08;
    margin: 14px 0;
}

.testimonial-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(203, 170, 110, 0.22);
    border-radius: 0;
    padding: 32px 30px;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    height: 315px !important;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(10, 35, 66, .16);
    border-color: rgba(201, 169, 97, .35);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 84px;
    font-family: Georgia, serif;
    color: rgba(201, 169, 97, .16);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: var(--antique-gold);
    font-size: 14px;
}

.testimonial-text {
    color: #253141;
    line-height: 1.96;
    font-size: 16px;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-user img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 169, 97, 0.32);
}

.testimonial-user strong {
    display: block;
    color: var(--deep-navy);
    font-size: 16px;
}

.testimonial-user span {
    color: var(--maple-red);
    font-size: 13px;
    font-weight: 700;
}

@media(max-width:900px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:640px) {

    .testimonial-section {
        padding: 54px 0;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 0;
    }

}

.swiper-wrapper {
    padding: 1rem;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold);
}

.navigation-buttons {
    position: absolute;
    z-index: 2000;
    width: 100%;
}

.navigation-buttons .swiper-button-prev {
    right: auto;
    left: -20px;
}

.navigation-buttons .swiper-button-next {
    right: -20px;
    left: auto;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: var(--white);
    border-radius: 50%;
    color: var(--navy) !important;
    box-shadow: var(--shadow);
    transition: background 0.2s, transform 0.2s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 900;
}

.testimonials-content {
    max-height: 171px;
    overflow-y: auto;
}

.testimonials-content p {
    color: #555;
    line-height: 1.5;
    font-style: italic;
    font-size: .9rem;
        margin: 0px 0px 10px;
    overflow: auto;
}