*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    background: #ffffff;
    border-bottom: 1px solid #e8e3de;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

/* centered logo image */
.nav > a.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    line-height: 0;
    text-decoration: none;
}

.nav > a.nav-logo > img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 820px) {
    .nav > a.nav-logo > img { height: 22px; }
    .nav-cta { padding: 7px 12px; font-size: 9px; }
}

@media (max-width: 480px) {
    .nav > a.nav-logo > img { height: 35px; }
    .nav-cta { padding: 6px 10px; font-size: 8px; }
}

.nav-ham {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.nav-ham i {
    display: block;
    width: 45px;
    height: 1.5px;
    background: #2E2E2E
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
}

.nav-center .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1.5px solid #1a1a1a;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 2px;
    position: relative;
    top: -1px;
}

.nav-cta {
    background: #5a1e24;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 130%;
    cursor: pointer;
    text-decoration: none;
}

/* ── HERO ── */
.hero {
    margin-top: 70px;
    position: relative;
    height: calc(100vh - 70px);
    min-height: 500px;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-dim {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.55) 10%, rgba(0, 0, 0, 0.55) 35%, rgba(0,0,0,0) 60%),
        linear-gradient(to right, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0) 65%);
}

.hero-tr {
    position: absolute;
    top: 78px;
    right: 28px;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    line-height: 1.35;
    max-width: 438px;
    text-align: left;
    font-weight: 300;
}

.hero-text {
    position: absolute;
    /* bottom: 52px; */
    left: 44px;
    top:75px;
    
}

.hero-text h1 {
    font-family: "Newsreader", serif;
    font-size: clamp(40px, 5.8vw, 72px);
    font-weight: 400;
    color: #fff;
    line-height: -2%;
}

/* ── INTRO ── */
.intro {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 72px 20px 80px 20px;
    border-bottom: 1px solid #e8e3de;
    background: #faf9f7;
}

.intro-ic {
    flex-shrink: 0;
    width: 300px;
    padding-top: 6px;
}

.intro-ic svg {
    width: 48px;
    height: 40px;
    stroke: #5b1e25;
    opacity: 1.75;
}

.intro-body {
    max-width: 1100px;
}

.intro-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 50px);
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 28px;
    max-width: 1100px;
}

.intro-body p {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    max-width: 1100px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

/* ── 3 PHOTO CARDS ── */
.trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-bottom: 1px solid #e8e3de;
    padding: 72px 20px 80px 20px;
}

.trio-card {
    position: relative;
    overflow: hidden;
    height: 530px;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.1);
}



.trio-card:last-child {
    border-right: none;
}

/* photo */
.trio-card .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
}


/* label top-left */
.trio-card .ph-label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    z-index: 2;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* frosted bottom panel — hidden by default */
.trio-card .ph-list {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42%;
    padding: 28px 24px 32px;
    list-style: none;
    z-index: 2;
    background: rgba(100, 100, 100, 0.18);
    backdrop-filter: blur(5px) saturate(150%) brightness(0.60);
    -webkit-backdrop-filter: blur(5px) saturate(150%) brightness(0.60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.trio-card:hover .ph-list {
    opacity: 1;
    transform: none;
}   

.trio-card .ph-list li {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    line-height: 2;
    padding-left: 0;
}

.trio-card .ph-list li::before {
    content: none;
}

/* on hover — only very subtle extra dim on top portion */
.trio-card .ph-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.00) 40%,
        rgba(0,0,0,0.0) 60%,
        rgba(0,0,0,0) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.trio-card:hover .ph-dim {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.05) 60%,
        rgba(0,0,0,0.65) 100%
    );
}

/* ── EXPERIENCE ── */
.exp {
    padding: 100px 20px;
    /* border-bottom: 1px solid #e8e3de */
}

.exp-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 40px;
}

.exp-hd-left {
    flex-shrink: 0;
}

.exp-hd-left h2 {
    font-family: "Newsreader", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 14px;
    
}

.exp-hd-left p {
    font-size: 18px;
    color: #888;
    line-height: 1.7;
    max-width: 541px;
}

.exp-hd-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding-bottom: 6px;
}

.exp-line {
    flex: 1;
    height: 0.8px;
    background: #5b1e25;
    display: block;
}

.exp-diamond {
    width: 21px;
    height: 20px;
    
}

.vid-timeline {
    position: absolute;
    bottom: 16px;
    left: 100px;
    right: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 3;
}

.vid-progress {
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    transition: width 0.1s linear;
}

.vid video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    display: block;
}

.vid {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.vid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    display: block;
}

.vid-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #5a1e24;
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    border-radius: 2px;
}

.vid-full {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.82);
    color: #5a1e24;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vid-full svg {
    width: 11px;
    height: 11px;
    display: block;
    fill: currentColor;
    stroke: none;
    opacity: 1;
}

.vid-full:hover {
    background: #5a1e24;
    color: #fff;
}

.vid-btn::after {
    content: none;
}

/* ── TESTIMONIALS ── */
.testi {
    padding: 56px 20px;
    border-bottom: 1px solid #e8e3de;
    background-color: #f8f8f8;
    cursor: grab;
    user-select: none;
}

.testi:active {
    cursor: grabbing;
}

.sec-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sec-hd h2 {
    font-family: "Newsreader", serif;
    font-size: 40px;
    font-weight: 400;
}

.sec-hd .sec-ic svg {
     width: 62px;
    height: 40px;
    stroke: #5b1e25;
    opacity: 1.75;

}

/* slider */
.testi-slider {
    overflow: hidden;
}

.testi-slider {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.testi-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 1.8s cubic-bezier(0.37, 0, 0.63, 1);
    will-change: transform;
}

.tc {
    background: #ffffff;
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    width: calc(100% / 3);
    min-width: calc(100% / 3);
    flex-shrink: 0;
    margin: 5px;
    box-sizing: border-box;
}

.tc:last-child { border-right: none; }

.tc-line {
    display: block;
    width: 60px;
    height: 1.7px;
    background: #83565b;
    margin-bottom: 40px;
    margin-top:20px;
    flex-shrink: 0;
}

.tc q {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: normal;
    line-height: 1.78;
    color: #1a1a1a;
    quotes: none;
    flex: 1;
    margin-bottom: 36px;
}

.tc q::before { content: '\201C'; }
.tc q::after  { content: '\201D'; }

.tc-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.tc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
    flex-shrink: 0;
    border: 1px solid #e0dbd6;
}

.tc-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a1a1a;
}

.tc-sub {
    font-size: 11.5px;
    color: #999;
}

/* pagination bar — see TESTIMONIAL ARROWS section below */

.testi-pg-track {
    width: 70%;
    height: 1.5px;
    background: #e0dbd6;
    cursor: pointer;
}

.testi-pg-fill {
    height: 100%;
    background: #1a1a1a;
    width: 33.33%;
    transition: width 0.4s ease;
}

/* ── HOW WE WORK ── */
.how {
    padding: 64px 20px;
    /* border-bottom: 1px solid #e8e3de; */
}

.how-title {
    font-family: "Newsreader", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.how-bottom {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
}

.how-l {
    padding-top: 4px;
    box-sizing: border-box;
}

.how-l a {
    display: inline-block;
    background: #5A1E24;
    color: #fff;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid #2E2E2E;
}

.how-r {
    min-width: 0;
}

/* each accordion step */
.step {
    border-bottom: 1px solid #d5c6c8;
    overflow: hidden;
}

.step:first-child {
    border-top: 1px solid #e8e3de;
}

.step-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
    cursor: pointer;
    user-select: none;
}

.step-title {
    font-family: "Newsreader", serif;
    font-size: 32px;
    font-weight: 400;
    color: #2E2E2E;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.step-n {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 400;
    font-family: "Newsreader", serif;
}

.step-tog {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-tog svg {
    width: 16px;
    height: 16px;
    stroke: #2E2E2E;
    stroke-width: 1.5;
}

.step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.step-body p {
    font-size: 13px;
    color: #888;
    line-height: 1.75;
    padding-bottom: 24px;
    margin: 0;
}

.step.open .step-body {
    max-height: 200px;
}

/* ── FAQ ── */
.faq {
    padding: 56px 20px 60px;
}

.faq .sec-hd {
    margin-bottom: 32px;
}

.faq .sec-hd h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
}

.faq-list {
    border: 1.6px solid #5A1E24;
    border-radius: 2px;
}

.faq-item {
    padding: 28px 32px;
    border-bottom: 0.2px solid #5A1E24;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    font-family: "Newsreader", serif;
    font-size: 20px;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 15px;
}

.faq-a {
    font-size: 12.5px;
    color: #4E4E4E;
    line-height: 1.75;
}

/* ── ORNAMENT ── */
.orn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 0;
    border-bottom: 1px solid #e8e3de;
}

.orn i {
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 1px solid #ccc;
    transform: rotate(45deg);
}

/* ── FOOTER CTA ── */
.fcta {
    text-align: center;
    padding: 64px 40px;
    /* border-bottom: 1px solid #e8e3de; */
}

.fcta p {
    font-family: "Newsreader", serif;
    font-size: 30px;
    color: #2E2E2E;
    margin-bottom: 16px;
    line-height: 1.5;
}

.fcta-paras {
    font-family: "Newsreader", serif;
    font-size: 15px;
    color: #888;
    line-height: 1.75;
    max-width: 60%;
    margin: 0 auto 32px;
    font-weight: 400;
}

.fcta button,
.fcta-btn {
    background: #5A1E24;
    color: #fff;
    border: 1px solid #2E2E2E;
    padding: 12px 26px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 30px;
    text-decoration: none;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

/* ── YELLOW FOOTER ── */
.yfoot {
    background: #fff;
    padding: 32px 44px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yfoot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.yfoot-logo img {
    width: clamp(180px, 55%, 820px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.yfoot-logo .ri {
    display: inline-block;
    position: relative;
}

.yfoot-logo .ri::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: .75em;
    height: .75em;
    border: 3.5px solid #5A1E24;
    border-radius: 50%;
    pointer-events: none;
}

.yfoot-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-bottom: 2px;
    width: 100%;
}

.yfoot-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #4E4E4E;
    text-decoration: none;
    font-weight: 400;
}

.yfoot-contact a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: white;
}

/* ── BOTTOM BAR ── */
.bbar {
    background: #fff;
    /* border-top: 1px solid #e8e3de; */
    padding: 12px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.bbar p,
.bbar a {
    font-size: 11px;
    color: #4E4E4E;
    text-decoration: none;
}

/* ════════════════════════════════
   RESPONSIVE — tablet 820px
════════════════════════════════ */
@media (max-width: 820px) {

    /* nav */
    .nav { padding: 0 16px; height: 52px; }
    .nav > img { height: 26px; }

    /* hero */
    .hero { height: 70vh; min-height: 400px; margin-top: 52px; margin-left: 0; margin-right: 0; }
    .hero-text { left: 20px; bottom: 40px; top: auto; max-width: 90%; }
    .hero-text h1 { font-size: 32px; }
    .hero-tr {
        top: 20px;
        right: 20px;
        left: auto;
        bottom: auto;
        font-size: 11px;
        max-width: 200px;
    }

    /* intro */
    .intro { flex-direction: column; padding: 40px 20px; gap: 16px; }
    .intro-ic { width: auto; }
    .intro-body h2 { font-size: 26px; }
    .intro-body p { font-size: 15px; }

    /* trio cards */
    .trio {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        overflow-x: visible;
    }
    .trio-card { height: 420px; }
    .trio-card .ph-list {
        opacity: 1;
        height: auto;
        padding: 16px 18px 20px;
    }
    .trio-card .ph-list li {
        font-size: 12px;
        line-height: 1.7;
    }

    /* experience */
    .exp { padding: 48px 20px; }
    .exp-hd { flex-direction: column; align-items: flex-start; gap: 16px; }
    .exp-hd-left h2 { font-size: 36px; }
    .exp-hd-right { width: 100%; }
    .vid { height: 260px; }
    .vid-timeline { left: 20px; right: 20px; bottom: 20px; }

    /* testimonials */
    .testi { padding: 40px 20px; }
    .sec-hd h2 { font-size: 28px; }
    .tc { width: 100%; min-width: 100%; min-height: auto; margin: 0; }
    .testi-pagination { justify-content: center; }
    .testi-pg-track { width: 90%; }

    /* how we work */
    .how { padding: 40px 20px; }
    .how-title { font-size: 36px; margin-bottom: 24px; }
    .how-bottom { grid-template-columns: 1fr; gap: 24px; }
    .step-hd { padding: 20px 0; }
    .step-title { font-size: 20px; }
    .step-n { font-size: 20px; }

    /* faq */
    .faq { padding: 40px 20px 60px; }
    .faq .sec-hd h2 { font-size: 26px; }
    .faq-item { padding: 20px 18px; }
    .faq-q { font-size: 16px; }

    /* footer cta */
    .fcta { padding: 48px 20px; }
    .fcta p { font-size: 22px; }
    .fcta-paras { max-width: 100%; font-size: 13px; }

    /* yellow footer */
    .yfoot { padding: 28px 20px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
    .yfoot-logo img { width: clamp(200px, 70%, 500px); }
    .yfoot-contact { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* bottom bar */
    .bbar { padding: 12px 20px; flex-wrap: nowrap; gap: 8px; align-items: center; }
}

/* ════════════════════════════════
   RESPONSIVE — mobile 480px
════════════════════════════════ */
@media (max-width: 480px) {

    /* nav */
    .nav-cta { padding: 7px 12px; font-size: 9px; }
    .nav > img { height: 22px; }

    /* hero */
    .hero { height: 60vh; margin-left: 0; margin-right: 0; }
    .hero-text h1 { font-size: 28px; }
    .hero-tr { display: none; }

    /* intro */
    .intro-body h2 { font-size: 22px; }
    .intro-body p { font-size: 13px; }

    /* trio */
    .trio-card { height: 280px; }
    .trio-card .ph-label { font-size: 20px; }

    /* experience */
    .exp-hd-left h2 { font-size: 28px; }
    .vid { height: 200px; }
    .vid-btn { font-size: 10px; padding: 8px 14px; }

    /* testimonials */
    .sec-hd h2 { font-size: 22px; }
    .tc q { font-size: 15px; }

    /* how */
    .how-title { font-size: 28px; }
    .step-title { font-size: 17px; }
    .step-n { font-size: 17px; }

    /* faq */
    .faq .sec-hd h2 { font-size: 22px; }
    .faq-q { font-size: 15px; }

    /* footer cta */
    .fcta p { font-size: 18px; }
    .fcta-paras { font-size: 12px; }

    /* yellow footer */
    .yfoot-logo img { width: clamp(160px, 80%, 320px); }
}

/* ══════════════════════════════
   ABOUT US PAGE
══════════════════════════════ */
.about-page {
    margin-top: 70px;
}

/* title */
.about-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: #1a1a1a;
    padding: 48px 20px 32px;
    line-height: 1.1;
}

/* full-width image */
.about-img-wrap {
    padding: 0 20px;
    margin-bottom: 0;
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* intro row — icon left, text right */
.about-intro {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: flex-start;
    padding: 36px 20px 62px;
    /* border-bottom: 1px solid #e8e3de; */
}

.about-intro-icon {
    padding-top: 6px;
}

/* .about-intro-icon img {
    width: 45px;
} */

.about-intro-icon svg {
    width: 62px;
    height: 40px;
}

.about-intro-body {
    max-width: 100%;
}

.about-intro-body h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 400;
    line-height: 1.4;
    color: #2E2E2E;
    margin-bottom: 24px;

}

.about-intro-body p {
    font-size: 16.5px;
    color: #6E6E6E;
    line-height: 1.85;
    max-width: 100%;
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 820px) {
    .about-title {
        padding: 32px 20px 20px;
        font-size: 36px;
    }

    .about-img-wrap {
        padding: 0 20px;
    }

    .about-img-wrap img {
        height: 260px;
        object-position: center center;
    }

    .about-intro {
        grid-template-columns: 1fr;
        padding: 40px 20px 52px;
        gap: 20px;
    }

    .about-intro-icon {
        width: auto;
    }

    .about-intro-body h2 {
        font-size: 22px;
    }

    .about-intro-body p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-title { font-size: 28px; padding: 24px 16px 16px; }
    .about-img-wrap { padding: 0 16px; }
    .about-img-wrap img { height: 200px; }
    .about-intro { grid-template-columns: 1fr; padding: 32px 16px 40px; }
    .about-intro-body h2 { font-size: 20px; }
    .about-intro-body p { font-size: 13px; }
}

/* ══════════════════════════════
   HOST PERSPECTIVE SECTION
══════════════════════════════ */
.host-perspective {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 72px 20px;
    /* border-bottom: 1px solid #e8e3de; */
    background: #faf9f7;
    align-items: start;
    min-height: 280px;
}

.host-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 40px;
}

.host-heading {
    font-family: 'Newsreader', serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.host-icon {
    margin-top: auto;
    padding-top: 48px;
}

.host-icon img {
    width: 36px;
    height: auto;
    opacity: 0.75;
}

.host-right {
    padding-left: 20px;
}

.host-quote {
    font-family: 'Newsreader', serif;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 400;
    font-style: normal;
    color: #1a1a1a;
    line-height: 1.75;
    margin-bottom: 28px;
    quotes: none;
}

.host-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #7a3040 50%, #e0c8cc 50%);
    margin-bottom: 35px;
}

.host-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.host-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e0dbd6;
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.host-detail {
    font-size: 11.5px;
    color: #999;
}

/* responsive */
@media (max-width: 820px) {
    .host-perspective {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 32px;
    }

    .host-left {
        padding-right: 0;
    }

    .host-icon {
        padding-top: 24px;
    }

    .host-right {
        padding-left: 0;
    }

    .host-quote {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .host-heading { font-size: 22px; }
    .host-quote { font-size: 15px; }
}

/* ══════════════════════════════
   STANDARDS SECTION
══════════════════════════════ */
.standards {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 72px 20px;
    /* border-bottom: 1px solid #e8e3de; */
    align-items: start;
    min-height: 320px;
}

.standards-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 40px;
}

.standards-heading {
    font-family: 'Newsreader', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
}

.standards-icon {
    margin-top: auto;
    padding-top: 60px;
}

.standards-right {
    padding-left: 20px;
}

.standard-item {
    padding-bottom: 4px;
}

.standard-item h3 {
    font-family: 'Newsreader', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: 14px;
    color: #4E4E4E;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 20px;
}

.standard-divider {
    width: 100%;
    height: 1px;
    background: #e0dbd6;
    margin-bottom: 24px;
}

.standard-item:last-child .standard-divider {
    margin-bottom: 0;
}

/* responsive */
@media (max-width: 820px) {
    .standards {
        grid-template-columns: 1fr;
        padding: 48px 20px;
        gap: 36px;
    }

    .standards-left {
        padding-right: 0;
    }

    .standards-icon {
        padding-top: 24px;
    }

    .standards-right {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .standards-heading { font-size: 26px; }
    .standard-item h3 { font-size: 15px; }
}

/* ══════════════════════════════
   HOW IT WORKS PAGE
══════════════════════════════ */
.hiw-page {
    margin-top: 70px;
}

/* hero heading */
.hiw-hero {
    padding: 56px 20px 0;
}

.hiw-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hiw-title-divider {
    width: 100%;
    height: 1px;
    background: #e0dbd6;
}

/* intro two-column */
.hiw-intro {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 56px 20px 72px;
    border-bottom: 1px solid #e8e3de;
    align-items: start;
    gap: 0;
}

.hiw-intro-icon {
    padding-top: 4px;
    flex-shrink: 0;
}

.hiw-intro-body {
    max-width: 100%;
}

.hiw-intro-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 20px;
}

.hiw-intro-body p:last-child {
    margin-bottom: 0;
}

/* responsive */
@media (max-width: 820px) {
    .hiw-hero { padding: 40px 20px 0; }
    .hiw-title { font-size: 36px; margin-bottom: 28px; }

    .hiw-intro {
        grid-template-columns: 1fr;
        padding: 40px 20px 52px;
        gap: 24px;
    }

    .hiw-intro-body {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hiw-title { font-size: 28px; }
    .hiw-intro-body p { font-size: 13px; }
}

/* ══════════════════════════════
   HOW IT WORKS — STEPS SECTION
══════════════════════════════ */
.hiw-steps {
    padding: 72px 20px 80px;
    border-bottom: 1px solid #e8e3de;
}

.hiw-steps-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.hiw-steps-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    flex-shrink: 0;
}

.hiw-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #e0dbd6;
    border-left: 1px solid #e0dbd6;
}

.hiw-step-card {
    padding: 48px 40px;
    border-right: 1px solid #e0dbd6;
    border-bottom: 1px solid #e0dbd6;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.hiw-step-num {
    font-family: 'Newsreader', serif;
    font-size: 48px;
    font-weight: 400;
    color: #e0dbd6;
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
}

.hiw-step-content h3 {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.hiw-step-content p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 20px;
}

.hiw-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hiw-step-content ul li {
    font-size: 12.5px;
    color: #888;
    line-height: 1.75;
    padding-left: 14px;
    position: relative;
}

.hiw-step-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #5b1e25;
    font-size: 10px;
    top: 3px;
}

/* ══════════════════════════════
   HOW IT WORKS — WHAT WE HANDLE
══════════════════════════════ */
.hiw-handle {
    padding: 80px 20px 88px;
    border-bottom: 1px solid #e8e3de;
    background: #faf9f7;
}

.hiw-handle-hd {
    margin-bottom: 52px;
}

.hiw-handle-hd h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
}

.hiw-handle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #d5c6c8;
    border-left: 1px solid #d5c6c8;
}

.hiw-handle-col {
    padding: 36px 32px 40px;
    border-right: 1px solid #d5c6c8;
    border-bottom: 1px solid #d5c6c8;
}

.hiw-handle-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #5a1e24;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.hiw-handle-divider {
    width: 40px;
    height: 1.5px;
    background: #5b1e25;
    margin-bottom: 24px;
}

.hiw-handle-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hiw-handle-list li {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    padding: 8px 0;
    border-bottom: 1px solid #ede8e4;
}

.hiw-handle-list li:last-child {
    border-bottom: none;
}

/* ══════════════════════════════
   HOW IT WORKS — QUOTE BREAK
══════════════════════════════ */
.hiw-quote-break {
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #e8e3de;
}

.hiw-quote-break blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 400;
    font-style: italic;
    color: #2E2E2E;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 20px;
    quotes: none;
}

.hiw-quote-break blockquote::before { content: '\201C'; }
.hiw-quote-break blockquote::after  { content: '\201D'; }

.hiw-quote-attr {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* ── HIW RESPONSIVE ── */
@media (max-width: 820px) {
    .hiw-steps { padding: 48px 20px 56px; }
    .hiw-steps-hd { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
    .hiw-steps-grid { grid-template-columns: 1fr; }
    .hiw-step-card { padding: 32px 20px; gap: 16px; }
    .hiw-step-num { font-size: 36px; width: 44px; }
    .hiw-step-content h3 { font-size: 19px; }

    .hiw-handle { padding: 48px 20px 56px; }
    .hiw-handle-grid { grid-template-columns: 1fr; }
    .hiw-handle-col { padding: 28px 20px 32px; }

    .hiw-quote-break { padding: 56px 20px; }
    .hiw-quote-break blockquote { font-size: 20px; }
}

@media (max-width: 480px) {
    .hiw-steps-title { font-size: 26px; }
    .hiw-step-num { font-size: 28px; }
    .hiw-step-content h3 { font-size: 17px; }
    .hiw-handle-hd h2 { font-size: 24px; }
    .hiw-quote-break blockquote { font-size: 17px; }
}

/* ══════════════════════════════
   JOURNEY ACCORDION SECTION
══════════════════════════════ */
.journey-section {
    display: flex;
    padding: 0 20px 80px;
    border-bottom: 1px solid #e8e3de;
    gap: 0;
}

/* left vertical pagination line */
.journey-pagination {
    width: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 0;
    margin-top: 40px;
}

.journey-pg-line {
    width: 1px;
    background: #e0d5d7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.journey-pg-fill {
    width: 1px;
    background: #7a3040;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    transition: top 0.4s ease, height 0.4s ease;
}

/* accordion container */
.journey-accordion {
    flex: 1;
    min-width: 0;
}

/* each item */
.journey-item {
    /* border-bottom: 1px solid #e8e3de; */
    overflow: hidden;
}

/* header row */
.journey-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 0px      ;
    cursor: pointer;
    user-select: none;
}

.journey-num {
    font-family: 'Newsreader', serif;
    font-size: 25px;
    font-weight: 400;
    color: #1a1a1a;
    min-width: 28px;
}

.journey-title {
    font-family: 'Newsreader', serif;
    font-size: 25px;
    font-weight: 400;
    color: #1a1a1a;
    flex: 1;
}

.journey-tog {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-tog svg {
    width: 16px;
    height: 16px;
    stroke: #9b1c1c;
    stroke-width: 1.5;
}

/* body — collapsed by default */
.journey-body {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 0 0;
}

/* open state */
.journey-item.open .journey-body {
    max-height: 700px;
    padding: 0 0 40px;
}

.journey-img {
    width: 100%;
    flex-shrink: 0;
}

.journey-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* right detail items */
.journey-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}

.journey-detail-item h4 {
    font-family: 'Newsreader', serif;
    font-size: 17px;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 6px;
    line-height: 1.3;
}

.journey-detail-item p {
    font-size: 13px;
    color: #4E4E4E;
    line-height: 1.8;
}

/* responsive */
@media (max-width: 820px) {
    .journey-section { padding: 0 20px 56px; gap: 0; }
    .journey-pagination { width: 20px; }
    .journey-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .journey-img img { height: 200px; }
    .journey-item.open .journey-body { max-height: 1100px; }
    .journey-title { font-size: 17px; }
    .journey-num { font-size: 17px; }
}

@media (max-width: 480px) {
    .journey-img img { height: 180px; }
    .journey-title { font-size: 19px; }
}

/* ══════════════════════════════
   START PLANNING SECTION
══════════════════════════════ */
.start-planning {
    padding: 56px 20px 40px;
    margin-bottom: 30px;
}

.start-planning-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.start-planning-hd h2 {
    font-family: 'Newsreader', serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 400;
    color: #1a1a1a;
}

.start-planning-hd .sec-ic img {
    width: 42px;
    height: auto;
    opacity: 0.7;
}

.start-planning-box {
    border: 1px solid #d5c6c8;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.start-planning-box p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    max-width: 670px;
}

.start-planning-btn {
    display: inline-block;
    background: #5a1e24;
    color: #fff;
    padding: 12px 22px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .start-planning { padding: 48px 20px 56px; }
    .start-planning-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .start-planning-box p { max-width: 100%; }
}

/* ══════════════════════════════
   HORIZONTAL SCROLL EXPERIENCE
══════════════════════════════ */
.hscroll-section {
    padding: 20px 20px 20px;
    /* border-bottom: 1px solid #e8e3de; */
    overflow: hidden;
}

.hscroll-wrap {
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.hscroll-wrap::-webkit-scrollbar { display: none; }
.hscroll-wrap:active { cursor: grabbing; }

.hscroll-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 480px;
}

/* each slide fills full width */
.hslide {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.hslide-img {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.hslide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hslide-text {
    width: 50%;
    flex-shrink: 0;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

/* ornament: diamond + line */
.hslide-ornament {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 289px;
}

.hslide-diamond-svg {
    width: 20px;
    height: 17px;
    flex-shrink: 0;
}

.hslide-orn-line {
    flex: 1;
    height: 1px;
    background: #d5c6c8;
    display: block;
    margin-left: 8px;
}

.hslide-text h3 {
    font-family: 'Newsreader', serif;
    font-size: 35px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hslide-text p {
    font-size: 18px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hslide-text p:last-child { margin-bottom: 0; }

/* progress bar */
.hscroll-progress {
    padding: 20px 20px 24px;
}

.hscroll-bar {
    width: 100%;
    height: 1.5px;
    background: #e0dbd6;
    position: relative;
}

.hscroll-fill {
    height: 100%;
    background: #5a1e24;
    width: 0%;
    transition: width 0.1s linear;
}

/* responsive */
@media (max-width: 820px) {
    .hscroll-track { height: auto; }

    .hslide {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .hslide-img {
        width: 100%;
        height: 260px;
        flex-shrink: 0;
    }

    .hslide-text {
        width: 100%;
        height: auto;
        padding: 24px 20px 32px;
        justify-content: flex-start;
    }

    .hslide-ornament {
        margin-bottom: 16px;
    }

    .hslide-orn-line {
        display: none;
    }

    .hslide-text h3 { font-size: 22px; margin-bottom: 12px; }
    .hslide-text p  { font-size: 13.5px; line-height: 1.7; }
}

@media (max-width: 480px) {
    .hslide-img { height: 210px; }
    .hslide-text { padding: 20px 16px 28px; }
    .hslide-text h3 { font-size: 20px; }
    .hslide-text p  { font-size: 13px; }
}

/* ══════════════════════════════
   TABBED FAQ SECTION
══════════════════════════════ */
.faq-tabs-section {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 64px 20px 80px;
    gap: 0;
    background: #f5f3f0;
    border-bottom: 1px solid #e8e3de;
    align-items: start;
}

/* LEFT — tab pills */
.faq-tabs-nav {
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    padding-top: 4px;
}

.faq-tab {
    background: #fff;
    border: 1.5px solid #d8cfd2;
    color: #444;
    padding: 11px 54px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    text-align: left;
    line-height: 1;
}

.faq-tab:hover {
    border-color: #7a3040;
    color: #7a3040;
}

.faq-tab.active {
    background: #5a1e24;
    border-color: #5a1e24;
    color: #fff;
}

/* RIGHT — panels */
.faq-tabs-content {
    position: relative;
    min-height: 300px;
}

.faq-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.faq-panel.active {
    display: block;
    animation: fadeSlideIn 0.35s ease forwards;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* each FAQ item inside panel */
.faq-tab-item {
    border-bottom: 1px solid #ddd8d3;
    overflow: hidden;
}

.faq-tab-item:first-child {
    border-top: 1px solid #ddd8d3;
}

.faq-tab-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-tab-hd span {
    font-family: 'Newsreader', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
    flex: 1;
}

.faq-tab-tog {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-tab-tog svg {
    width: 24px;
    height: 24px;
    stroke: #9b1c1c;
    stroke-width: 1.5;
}

/* body */
.faq-tab-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-tab-item.open .faq-tab-body {
    max-height: 200px;
}

.faq-tab-body p {
    font-size: 14.5px;
    color: #777;
    line-height: 1.8;
    padding-bottom: 20px;
    margin: 0;
}

/* responsive */
@media (max-width: 820px) {
    .faq-tabs-section {
        grid-template-columns: 1fr;
        padding: 48px 20px 56px;
        gap: 32px;
    }

    .faq-tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding-right: 0;
        gap: 10px;
    }

    .faq-tab { font-size: 11px; padding: 8px 16px; }
    .faq-tab-hd span { font-size: 15px; }
}

@media (max-width: 480px) {
    .faq-tab { font-size: 10px; padding: 7px 14px; }
    .faq-tab-hd span { font-size: 14px; }
}

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.contact-section {
    padding: 48px 20px 80px;
    border-bottom: 1px solid #e8e3de;
}

.contact-card {
    border: 1px solid #d8d3ce;
    padding: 48px 44px 52px;
    background: #fff;
}

.contact-card-hd {
    margin-bottom: 36px;
}

.contact-card-hd h2 {
    font-family: 'Newsreader', serif;
    font-size: 26px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-card-hd p {
    font-size: 12.5px;
    color: #888;
    line-height: 1.75;
    max-width: 480px;
}

/* trip toggle */
.trip-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
}

.trip-btn {
    background: #fff;
    border: 1.5px solid #d8cfd2;
    color: #444;
    padding: 9px 22px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trip-btn.active {
    background: #5a1e24;
    border-color: #5a1e24;
    color: #fff;
}

.trip-btn:hover:not(.active) {
    border-color: #7a3040;
    color: #7a3040;
}

/* form grid */
.cf-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.cf-field label {
    font-size: 12px;
    color: #555;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.req {
    color: #9b1c1c;
    margin-left: 2px;
}

.cf-field input,
.cf-field textarea {
    border: 1px solid #d8d3ce;
    padding: 10px 14px;
    font-size: 12.5px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: #7a3040;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: #bbb;
    font-size: 12px;
}

/* date field wrapper */
.cf-date-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-date-wrap .cf-date-input {
    width: 100%;
    padding-right: 38px;
    cursor: pointer;
}

.cf-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    pointer-events: auto;
    z-index: 1;
}

.cf-date-icon:hover {
    color: #7a3040;
}

.cf-date-wrap.has-error .cf-date-input {
    border-color: #c0392b;
    box-shadow: 0 0 0 1px #c0392b;
}

.cf-date-wrap .cf-date-error {
    display: none;
    position: absolute;
    bottom: -22px;
    left: 0;
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #c0392b;
    white-space: nowrap;
    z-index: 10;
}

.cf-date-wrap.has-error .cf-date-error {
    display: block;
}

/* custom calendar dropdown */
.cf-calendar {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #d8d3ce;
    box-shadow: 0 4px 16px rgba(90,30,36,0.18);
    width: 296px;
    padding: 16px;
    animation: cfCalIn 0.2s ease;
}

.cf-calendar.open {
    display: block;
}

@keyframes cfCalIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cf-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cf-cal-title {
    font-family: 'Newsreader', serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cf-cal-title:hover {
    color: #5a1e24;
}

.cf-cal-title .cf-cal-month-btn,
.cf-cal-title .cf-cal-year-btn {
    background: none;
    border: none;
    font-family: 'Newsreader', serif;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

.cf-cal-title .cf-cal-month-btn:hover,
.cf-cal-title .cf-cal-year-btn:hover {
    color: #5a1e24;
}

/* month/year picker panels */
.cf-cal-panels {
    display: none;
}

.cf-cal-panels.open {
    display: block;
}

.cf-cal-months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.cf-cal-month-cell {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    letter-spacing: 0.2px;
}

.cf-cal-month-cell:hover {
    background: rgba(90,30,36,0.06);
    border-color: #d8d3ce;
}

.cf-cal-month-cell.active {
    background: #5a1e24;
    color: #fff;
    border-color: #5a1e24;
}

.cf-cal-month-cell.active:hover {
    background: #7a3040;
    border-color: #7a3040;
}

.cf-cal-years-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cf-cal-years-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #555;
}

.cf-cal-years-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.cf-cal-year-cell {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cf-cal-year-cell:hover {
    background: rgba(90,30,36,0.06);
    border-color: #d8d3ce;
}

.cf-cal-year-cell.active {
    background: #5a1e24;
    color: #fff;
    border-color: #5a1e24;
}

.cf-cal-year-cell.active:hover {
    background: #7a3040;
    border-color: #7a3040;
}

.cf-cal-nav {
    display: flex;
    gap: 4px;
}

.cf-cal-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #d8d3ce;
    cursor: pointer;
    color: #555;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.cf-cal-btn:hover {
    border-color: #7a3040;
    color: #5a1e24;
}

.cf-cal-btn svg {
    width: 14px;
    height: 14px;
}

.cf-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}

.cf-cal-weekday {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.cf-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cf-cal-day {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.cf-cal-day:hover {
    background: rgba(90,30,36,0.06);
}

.cf-cal-day.empty {
    cursor: default;
}

.cf-cal-day.empty:hover {
    background: none;
}

.cf-cal-day.today {
    color: #7a3040;
    font-weight: 600;
}

.cf-cal-day.selected {
    background: #5a1e24;
    color: #fff;
}

.cf-cal-day.selected:hover {
    background: #7a3040;
}

.cf-cal-day.past {
    color: #ccc;
    cursor: default;
}

.cf-cal-day.past:hover {
    background: none;
}

/* phone field */
.cf-phone {
    display: flex;
    gap: 0;
    width: 100%;
}

.cf-phone input {
    flex: 1;
    min-width: 0;
    width: auto;
    border-left: none;
}

/* custom select dropdown — matches calendar UI */
.cf-select-wrap {
    position: relative;
    width: 100%;
}

.cf-select-display {
    border: 1px solid #d8d3ce;
    padding: 10px 34px 10px 14px;
    font-size: 12.5px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.cf-select-display:hover {
    border-color: #7a3040;
}

.cf-select-display:focus {
    border-color: #7a3040;
}

.cf-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: color 0.2s ease;
}

.cf-select-wrap:hover .cf-select-arrow {
    color: #7a3040;
}

.cf-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #d8d3ce;
    box-shadow: 0 4px 16px rgba(90,30,36,0.18);
    max-height: 200px;
    overflow-y: auto;
    animation: cfCalIn 0.2s ease;
}

.cf-select-dropdown.open {
    display: block;
}

.cf-select-option {
    padding: 9px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cf-select-option:hover {
    background: rgba(90,30,36,0.06);
}

.cf-select-option.active {
    background: #5a1e24;
    color: #fff;
}

.cf-select-option.active:hover {
    background: #7a3040;
}

/* country code custom select — compact */
.cf-code-wrap {
    width: 80px;
    max-width: 80px;
    flex-shrink: 0;
}

.cf-code-wrap .cf-select-display {
    border-right: none;
    background-color: #f9f7f5;
    padding: 10px 24px 10px 8px;
    font-size: 12px;
}

.cf-code-wrap .cf-select-arrow {
    right: 6px;
}

.cf-code-wrap .cf-select-dropdown {
    min-width: 80px;
    left: 0;
    right: auto;
}

/* full-width message */
.cf-full {
    margin-bottom: 28px;
}

.cf-full textarea {
    resize: vertical;
    min-height: 100px;
}

/* submit */
.cf-submit {
    margin-top: 4px;
}

.cf-btn {
    background: #5a1e24;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
}

.cf-btn:hover {
    background: #7a3040;
}

/* responsive */
@media (max-width: 820px) {
    .contact-section { padding: 40px 20px 56px; }
    .contact-card { padding: 32px 24px 40px; }
    .cf-row { grid-template-columns: 1fr; gap: 16px; }
    .contact-card-hd h2 { font-size: 22px; }
    .cf-phone { width: 100%; }
}

@media (max-width: 480px) {
    .contact-card { padding: 24px 16px 32px; }
    .contact-card-hd h2 { font-size: 20px; }
    .cf-code-wrap { width: 72px; max-width: 72px; }
    .cf-code-wrap .cf-select-display { padding: 10px 20px 10px 6px; font-size: 11px; }
}

/* ── contact form extras ── */
.cf-arrival-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.cf-arrival-wrap input {
    flex: 1;
    min-width: 0;
}

.cf-swap {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b1c1c;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cf-swap:hover {
    transform: rotate(180deg);
}

.cf-roundtrip-dates {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 820px) {
    .cf-roundtrip-dates {
        grid-template-columns: 1fr;
        max-width: 100% !important;
    }
}

/* calendar responsive */
@media (max-width: 820px) {
    .cf-calendar {
        width: 100%;
        left: 0;
        right: 0;
    }

    .cf-cal-day {
        width: 100%;
        height: 34px;
        font-size: 11.5px;
    }

    .cf-cal-month-cell {
        height: 34px;
        font-size: 11px;
    }

    .cf-cal-year-cell {
        height: 34px;
        font-size: 11.5px;
    }
}

@media (max-width: 480px) {
    .cf-calendar {
        width: 100%;
        padding: 12px;
    }

    .cf-cal-title {
        font-size: 13px;
    }

    .cf-cal-day {
        height: 32px;
        font-size: 11px;
    }

    .cf-cal-month-cell {
        height: 32px;
        font-size: 10.5px;
    }

    .cf-cal-year-cell {
        height: 32px;
        font-size: 11px;
    }

    .cf-cal-btn {
        width: 26px;
        height: 26px;
    }
}

/* ── contact alerts ── */
.cf-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 28px;
    line-height: 1.5;
}

.cf-alert-success {
    background: #f0faf4;
    border: 1px solid #a8d5b5;
    color: #1a5c32;
}

.cf-alert-error {
    background: #fdf3f3;
    border: 1px solid #e8b4b4;
    color: #7a1c1c;
}

/* ══════════════════════════════
   MENU OVERLAY
══════════════════════════════ */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* faded background image */
.menu-bg {
    position: absolute;
    inset: 0;
    background-image: url('../../images/banner.png');
    opacity: 0.5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 18%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.5) 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 18%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.5) 82%, transparent 100%);
}

/* top border with diamonds */
.menu-top-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 18px 32px 0;
    gap: 0;
}

.menu-diamond {
    width: 18px;
    height: 15px;
    flex-shrink: 0;
}

.menu-top-line {
    flex: 1;
    height: 1px;
    background: #5b1e25;
    display: block;
}

/* main content area */
.menu-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 44px 36px;
}

/* top row */
.menu-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.menu-heading {
    font-family: 'Newsreader', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: #5a1e24;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.menu-heading-diamond {
    width: 18px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.menu-close {
    background: none;
    border: none;
    font-family: 'Newsreader', serif;
    font-size: 18px;
    font-weight: 400;
    color: #5a1e24;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
    letter-spacing: 0.3px;
}

.menu-close:hover { opacity: 0.7; }

.menu-close .close-x {
    font-family: 'Newsreader', serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: #5a1e24;
}

/* nav links */
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding-left: 16px;
}

.menu-link {
    font-family: 'Newsreader', serif;
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.menu-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: #5a1e24;
    margin-left: 18px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #5a1e24;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 900px;
    height: 1px;
}

/* bottom row */
.menu-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 24px;
}

.menu-footer-right {
    text-align: right;
}

.menu-footer-logo {
    margin-bottom: 10px;
}

.menu-footer-logo img {
    height: clamp(28px, 4vw, 55px);
    width: auto;
    display: block;
    margin-left: auto;
}

.menu-logo-i {
    display: inline-block;
    position: relative;
}

.menu-logo-i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: 0.75em;
    height: 0.75em;
    border: 2.5px solid #5a1e24;
    border-radius: 50%;
    pointer-events: none;
}

.menu-footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #000000;
}

.menu-footer-contact svg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.menu-footer-contact span {
    display: flex;
    align-items: center;
    gap: 5px; 
}

/* slide-in animation for links */
.menu-overlay.open .menu-link {
    animation: menuLinkIn 0.4s ease forwards;
}

.menu-overlay.open .menu-link:nth-child(1) { animation-delay: 0.05s; opacity: 0; }
.menu-overlay.open .menu-link:nth-child(2) { animation-delay: 0.10s; opacity: 0; }
.menu-overlay.open .menu-link:nth-child(3) { animation-delay: 0.15s; opacity: 0; }
.menu-overlay.open .menu-link:nth-child(4) { animation-delay: 0.20s; opacity: 0; }
.menu-overlay.open .menu-link:nth-child(5) { animation-delay: 0.25s; opacity: 0; }
.menu-overlay.open .menu-link:nth-child(6) { animation-delay: 0.30s; opacity: 0; }

@keyframes menuLinkIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* responsive */
@media (max-width: 820px) {
    .menu-content { padding: 24px 20px 28px; }
    .menu-footer-contact { flex-direction: column; align-items: flex-end; gap: 6px; }
}

/* ── menu active link — handled above ── */

/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */

/* base hidden state */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger variants */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* fade from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* fade from right */
.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ══════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════ */
.privacy-section {
    padding: 56px 20px 80px;
}

.privacy-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.privacy-updated {
    font-size: 12px;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.privacy-wrap p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.privacy-wrap h2 {
    font-family: 'Newsreader', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.privacy-wrap h3 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2E2E2E;
    margin-top: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.privacy-wrap a {
    color: #5a1e24;
    text-decoration: none;
}

.privacy-wrap a:hover {
    text-decoration: underline;
}

.privacy-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.privacy-wrap ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    font-family: 'Inter', sans-serif;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.privacy-wrap ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5b1e25;
    font-size: 14px;
    top: 2px;
}

@media (max-width: 820px) {
    .privacy-wrap h2 { font-size: 20px; margin-top: 36px; }
}

@media (max-width: 480px) {
    .privacy-wrap h2 { font-size: 18px; }
    .privacy-wrap p  { font-size: 13.5px; }
}

/* ── Privacy page — force content visible, bypass reveal animations ── */
.privacy-content,
.privacy-content *,
.privacy-content.reveal,
.privacy-content.reveal-left,
.privacy-content.reveal-right,
.privacy-content .reveal,
.privacy-content .reveal-left,
.privacy-content .reveal-right,
.privacy-content .no-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ── Footer CTA top divider ── */
.fcta-divider {
    width: 100%;
    height: 1px;
    background: #e8e3de;
    margin-bottom: 64px;
}

/* ══════════════════════════════
   404 PAGE
══════════════════════════════ */
.error-404-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 80px;
    min-height: calc(60vh - 70px);
}

.error-404-num {
    font-family: 'Newsreader', serif;
    font-size: clamp(160px, 22vw, 320px);
    font-weight: 400;
    color: #5a1e24;
    line-height: 1;
    letter-spacing: -4px;
    text-align: center;
    user-select: none;
}

.error-404-left {
    position: absolute;
    top: 60px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.error-404-icon {
    position: absolute;
    top: 60px;
    left: 20px;
}

.error-404-btn {
    position: absolute;
    bottom: 60px;
    left: 20px;
    display: inline-block;
    background: #5a1e24;
    color: #fff;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
}

@media (max-width: 820px) {
    .error-404-section {
        padding: 40px 20px 60px;
        min-height: calc(50vh - 52px);
    }
    .error-404-num { font-size: clamp(100px, 28vw, 180px); letter-spacing: -2px; }
    .error-404-icon { top: 40px; }
    .error-404-btn { bottom: 40px; font-size: 10px; padding: 8px 18px; }
}

@media (max-width: 480px) {
    .error-404-num { font-size: clamp(80px, 30vw, 130px); }
    .error-404-icon { top: 28px; }
    .error-404-btn { bottom: 28px; }
}

/* ── Hide all native video UI controls ── */
.vid video::-webkit-media-controls            { display: none !important; }
.vid video::-webkit-media-controls-enclosure  { display: none !important; }
.vid video::-webkit-media-controls-panel      { display: none !important; }
.vid video::-webkit-media-controls-play-button { display: none !important; }
.vid video::-webkit-media-controls-overlay-play-button { display: none !important; }
.vid video { pointer-events: none; }

/* ── Video button pause state — CSS bars, no emoji ── */
.vid-btn.is-playing::after {
    border-style: double;
    border-width: 0 0 0 7px;
    border-color: transparent transparent transparent #fff;
    width: 7px;
    height: 8px;
    border-left-width: 0;
    /* two vertical bars via box-shadow */
    background: #fff;
    width: 2px;
    height: 9px;
    border: none;
    box-shadow: 4px 0 0 #fff;
}

/* ── Bottom line after copyright bar ── */
.bbar-bottom-line {
    width: 97%;
    height: 1px;
    background: #5b1e25;
    margin: 15px auto;
}

/* ══════════════════════════════
   ABSTRACT SVG DRAW ANIMATION
══════════════════════════════ */
.abstract-svg {
    width: 46.46px !important;
    height: 30.43px !important;
}

.abstract-svg path {
    stroke: #5A1E24;
    stroke-width: 1;
}

/* ── Abstract SVG 2 draw animation ── */
.abstract-svg2 {
    width: 40px !important;
    height: 40px !important;
}

.abstract-svg2 path {
    stroke: #5A1E24;
    stroke-width: 1;
}

/* ── Abstract SVG 3 (plane symbol) draw animation ── */
.abstract-svg3 {
    width: 37px !important;
    height: 34px !important;
}

.abstract-svg3 path {
    fill: none;
    stroke: #5A1E24;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Abstract SVGs mobile responsive ── */
@media (max-width: 820px) {
    .abstract-svg  { width: 48px !important; height: 30px !important; }
    .abstract-svg2 { width: 52px !important; height: 34px !important; }
    .abstract-svg3 { width: 40px !important; height: 26px !important; }
}

@media (max-width: 480px) {
    .abstract-svg  { width: 38px !important; height: 24px !important; }
    .abstract-svg2 { width: 42px !important; height: 27px !important; }
    .abstract-svg3 { width: 32px !important; height: 21px !important; }
}

/* ══════════════════════════════
   WHAT TO EXPECT SECTION
══════════════════════════════ */
.what-expect-section {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
    padding: 64px 20px 72px;
    background: #F8F8F8;
    margin-bottom: 50px;
    
}

.what-expect-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-right: 40px;
}

.what-expect-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.what-expect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.what-expect-card {
    background: #fff;
    border: 1px solid #e8e3de;
    padding: 24px 20px 28px;
}

.what-expect-card h3 {
    font-family: 'Newsreader', serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.what-expect-card p {
    font-size: 12.5px;
    color: #888;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 820px) {
    .what-expect-section {
        grid-template-columns: 1fr;
        padding: 48px 20px 56px;
        gap: 32px;
    }
    .what-expect-left { padding-right: 0; }
    .what-expect-cards { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
    .what-expect-title { font-size: 22px; }
    .what-expect-card { padding: 20px 16px 24px; }
}


/* ══════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #5a1e24;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(90,30,36,0.18);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    display: block;
    border: 1px;
}

.whatsapp-float:hover {
    background: #5a1e24;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(90,30,36,0.30);
}

.whatsapp-float:hover svg path {
    stroke: #fff;
}

@media (max-width: 480px) {
    .whatsapp-float { bottom: 20px; right: 16px; width: 46px; height: 46px; }
    .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ══════════════════════════════
   CONTINUOUS MOTION — CREATIVE ELEMENTS
   (all stroke animations driven by JS rAF loop)
══════════════════════════════ */

/* Diamond and hslide diamond base — fill none so stroke shows */
.exp-diamond path,
.hslide-diamond-svg path,
.menu-heading-diamond path {
    fill: none;
}

.exp-diamond { animation: none; }
.hslide-diamond-svg { animation: none; }
.menu-heading-diamond { animation: none; }

/* ══════════════════════════════
   VID BTN — hover-only when playing
══════════════════════════════ */
.vid-btn {
    transition: opacity 0.3s ease;
}

/* ══════════════════════════════
   NAV CTA — mobile responsive
══════════════════════════════ */
@media (max-width: 820px) {
    .nav-cta { padding: 7px 12px; font-size: 9px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    .nav-cta { padding: 6px 10px; font-size: 8px; letter-spacing: 0.8px; }
}

/* ══════════════════════════════
   VIDEO TIMELINE — responsive
══════════════════════════════ */
@media (max-width: 820px) {
    .vid-timeline { left: 20px; right: 20px; bottom: 10px; }
}

/* ══════════════════════════════
   START PLANNING BTN — mobile
══════════════════════════════ */
@media (max-width: 820px) {
    .start-planning-btn { font-size: 10px; padding: 10px 18px; }
}

/* ══════════════════════════════
   TESTIMONIAL ARROWS
══════════════════════════════ */
.testi-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.testi-pg-track {
    flex: 1;
    height: 1.5px;
    background: #e0dbd6;
    cursor: pointer;
}

.testi-pg-fill {
    height: 100%;
    background: #1a1a1a;
    width: 33.33%;
    transition: width 1.8s cubic-bezier(0.37, 0, 0.63, 1);
}

.testi-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.testi-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #5a1e24;
    background: transparent;
    color: #5a1e24;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.testi-arrow:hover {
    background: #5a1e24;
    color: #fff;
}

.testi-arrow svg {
    display: block;
    pointer-events: none;
}

@media (max-width: 820px) {
    .testi-arrow { width: 32px; height: 32px; }
}
