@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument_serif/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument_serif/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
.header-section-about-us {
    display: flex;
    justify-content: center;
}

.header-section-content {
    text-align: center;
    padding: 50px 20px;
}

.heading-one-banner-main-about-us {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
    color: black;
}

.paragraph-main-about-us {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5em;
    width: 65%;;
    font-family: "Instrument Serif", serif !important;
    color: black;
    margin-top: 1rem;
    margin: 0 auto;
    text-align: center;
}

.about-us.button-wrapper {
    display: flex;
    gap: 12px;
    /* space between buttons */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    /* optional spacing */
}

.btn {
    min-width: 150px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 12px !important;
    /* updated */
    transition: background-color 0.3s ease;
    text-align: center;
    /* updated */
    background-color: #000;
    /* updated */
    color: white;
    /* for readability */
}

.start-free {
    background-color: black;
    color: white;
}

.start-free:hover {
    background-color: rgb(255, 56, 92);
    color: rgb(255, 255, 255);
}

.book-demo {
    background-color: transparent;
    color: black;
    border: 2px solid black;
}

.book-demo:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}


/* Bar Hero Section */

:root {
    --ink: #0b0b12;
    --muted: #5b6170;
    --primary: rgb(255, 56, 92);
    /* purple accent similar to the reference */
    --primary-10: rgb(255, 56, 92);
    /* light purple for bg blob */
    /* --card: #fff; */
    --border: #e9e9f0;
    --shadow: 0 10px 30px rgba(16, 24, 40, .08);
    --radius-xl: 24px;
    --radius-lg: 16px;
}

.bar-hero {
    padding: clamp(32px, 6vw, 72px) 20px;
}

.bar-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

@media (max-width: 940px) {
    .bar-hero__container {
        grid-template-columns: 1fr;
    }
}

.bar-hero__title {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    font-family: "Instrument Serif", serif !important;
}

.bar-hero__title .accent {
    color: rgb(255, 56, 92);
}

.bar-hero__desc {
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 15px);
    line-height: 1.7;
    margin: 0 0 28px;
    font-family: "Inter", sans-serif !important;
}

.bar-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 680px;
}

@media (max-width: 520px) {
    .bar-hero__stats {
        grid-template-columns: 1fr;
    }
}

.stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow);
}

.stat__value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    font-family: "Inter", sans-serif !important;
}

.stat__label {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--muted);
    font-family: "Inter", sans-serif !important;
}

/* Right side */
.bar-hero__media {
    position: relative;
    display: grid;
    place-items: center;
}

.bar-blob {
    position: absolute;
    right: -30px;
    top: -30px;
    width: clamp(220px, 40vw, 360px);
    height: clamp(220px, 40vw, 360px);
    background: var(--primary-10);
    border-radius: 28px;
    z-index: 0;
    filter: saturate(120%);
}

.bar-card {
    width: 100%;
    max-width: 520px;
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    margin: 0;
}

.bar-card__img {
    display: block;
    width: 100%;
    height: auto;
}

.bar-card__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
    color: var(--ink);
    font-family: "Inter", sans-serif !important;
}

/* What We Do Section (uses your variables) */
.wwd {
    padding: clamp(32px, 6vw, 72px) 20px;
}

.wwd__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

@media (max-width: 940px) {
    .wwd__container {
        grid-template-columns: 1fr;
    }
}

/* Left media */
.wwd__media {
    position: relative;
}

.wwd__card {
    background: #fff;
    /* card surface */
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transform: rotate(-6deg);
    overflow: hidden;
}

.wwd__card img {
    display: block;
    width: 100%;
    height: auto;
}

/* Right copy */
.wwd__title {
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    color: var(--ink);
    text-align: left;
}

.wwd__title .accent {
    color: var(--primary);
}

.wwd__desc {
    font-family: "Inter", sans-serif !important;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 15px);
    line-height: 1.8;
    margin: 0 0 14px;
}

/* Optional soft blob behind the image (matches your primary color) */
.wwd__media::after {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: clamp(220px, 38vw, 360px);
    height: clamp(220px, 38vw, 360px);
    background: var(--primary-10);
    border-radius: 28px;
    z-index: -1;
    filter: saturate(120%);
}

/* Our Mission — follows your palette and type */
.mission {
    /* soft tint using your primary color */
    background: rgba(255, 56, 92, 0.04);
    padding: clamp(32px, 6vw, 72px) 20px;
}

.mission__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

@media (max-width: 940px) {
    .mission__container {
        grid-template-columns: 1fr;
    }
}

/* Left — copy */
.mission__title {
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    color: var(--ink);
    text-align: left;
}

.mission__desc {
    font-family: "Inter", sans-serif !important;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 15px);
    line-height: 1.8;
    margin: 0 0 14px;
}

/* Right — media */
.mission__media {
    position: relative;
    display: grid;
    place-items: center;
}

.mission__blob {
    position: absolute;
    right: -28px;
    top: -28px;
    width: clamp(220px, 40vw, 360px);
    height: clamp(220px, 40vw, 360px);
    background: var(--primary-10);
    border-radius: 28px;
    filter: saturate(120%);
    z-index: 0;
}

.mission__card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transform: rotate(8deg);
    overflow: hidden;
    margin: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
}

.mission__img {
    display: block;
    width: 100%;
    height: auto;
}

/* What We Offer */
.offer {
    padding: clamp(28px, 6vw, 64px) 20px;
}

.offer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer__title {
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(22px, 2.4vw, 28px);
    text-align: center;
    color: var(--ink);
    margin: 0 0 22px;
    letter-spacing: -0.01em;
}

.offer__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 16px;
}

@media (max-width: 1100px) {
    .offer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .offer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.offer__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--card, #fff);
    /* if --card is commented, falls back to white */
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.offer__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 56, 92, .45);
    box-shadow: 0 14px 30px rgba(16, 24, 40, .10);
}

.offer__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--ink);
}

.offer__icon--accent {
    color: var(--primary);
}

.offer__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.offer__label {
    font-family: "Inter", sans-serif !important;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Testimonial Slider ===== */
.review-slider {
    padding: clamp(32px, 6vw, 72px) 20px;
    background: rgba(255, 56, 92, .03);
}

.rs__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

@media (max-width: 940px) {
    .rs__container {
        grid-template-columns: 1fr;
    }
}

/* Left */
.rs__copy {}

.rs__quote {
    font-family: "Inter", sans-serif !important;
    color: var(--ink);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.8;
    margin: 0 0 28px;
    opacity: 1;
    transition: opacity .35s ease;
}

.rs__quote.is-fading {
    opacity: 0;
}

.rs__brandRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.rs__brand {
    margin: 0;
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.rs__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rs__btn {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--card, #fff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--ink);
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.rs__btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 56, 92, .45);
    box-shadow: 0 14px 30px rgba(16, 24, 40, .10);
}

.rs__btn svg {
    width: 22px;
    height: 22px;
}

/* Right */
.rs__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--card, #fff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.rs__track {
    display: flex;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.rs__slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/10;
    /* responsive height */
    overflow: hidden;
}

.rs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* small decorative rounded preview to the far right (optional) */
.rs__slide--peek {
    padding-right: 20px;
}

.rs__container--outer {
    max-width: 1200px;
    margin: 0 auto;
}

.rs__header {
    text-align: center;
    margin-bottom: 40px;
}

.rs__heading {
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.rs__subheading {
    font-family: "Inter", sans-serif !important;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 15px);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Banner */
.culture-cta {
    padding: 24px 20px;
    background: transparent;
    /* page bg */
}

.culture-cta__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 10px 30px rgba(16, 24, 40, .08));
    /* golden gradient */
    /* background: linear-gradient(90deg, rgb(255, 56, 92) 0%, rgb(255, 56, 92) 50%, rgb(255, 56, 92) 100%); */
    background-color: white;
    min-height: 240px;
}

/* diagonal light beams */
.culture-cta__wrap::before,
.culture-cta__wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.culture-cta__wrap::before {
    /* big beam from top-left */
    background:
        linear-gradient(12deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, .20) 31%, rgba(255, 255, 255, 0.0) 50%);
    transform: translateY(-30%) skewY(-8deg);
    mix-blend-mode: soft-light;
}

.culture-cta__wrap::after {
    /* thinner beam along bottom */
    background:
        linear-gradient(-6deg, rgba(255, 255, 255, 0.0) 58%, rgba(255, 255, 255, .25) 59%, rgba(255, 255, 255, 0.0) 68%);
    transform: translateY(22%) skewY(-6deg);
    mix-blend-mode: soft-light;
}

/* content */
.culture-cta__content {
    position: relative;
    z-index: 2;
    padding: 34px 48px;
    max-width: 680px;
    color: var(--ink, #0b0b12);
}

.culture-cta__eyebrow {
    margin: 0 0 8px;
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    color: rgba(11, 11, 18, .9);
}

.culture-cta__title {
    margin: 0 0 20px;
    font-family: "Instrument Serif", serif !important;
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink, #0b0b12);
    text-align: left;
}

.culture-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--ink, #0b0b12);
    color: #fff;
    font-family: "Inter", sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: var(--shadow, 0 10px 30px rgba(16, 24, 40, .08));
    /* transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; */
}

.culture-cta__btn:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 14px 30px rgba(16, 24, 40, .14); */
    background-color: rgb(255, 56, 92);
}

/* right decorative arcs */
.culture-cta__decor {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(50%, 600px);
    z-index: 1;
    opacity: .8;
}

/* responsive */
@media (max-width: 768px) {
    .culture-cta__content {
        padding: 28px;
    }

    .culture-cta__wrap {
        min-height: 220px;
    }
}


/* From the Blog (white cards, black text; uses your tokens) */
.blog {
    padding: clamp(32px, 6vw, 72px) 20px;
    background: #fff;
}

.blog__wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.blog__heading {
    text-align: center;
    margin: 0 0 22px;
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(22px, 2.6vw, 32px);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1024px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}

.post {
    background: var(--card, #fff);
    border: 1px solid var(--border);
    border-radius: 24px;
    /* soft like screenshot */
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

.post:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, .12);
}

.post__media {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.post__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.post:hover .post__media img {
    transform: scale(1.04);
}

.post__body {
    padding: 18px 18px 20px;
}

.post__tag {
    display: inline-block;
    font-family: "Inter", sans-serif !important;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: rgba(255, 56, 92, 0.2);

    color: black;
    border: 1px solid rgba(255, 56, 92, .25);
    margin-bottom: 10px;
}

.post__title {
    margin: 0 0 8px;
    font-family: "Instrument Serif", serif !important;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.25;
    color: var(--ink);
}

.post__title a {
    color: inherit;
    text-decoration: none;
}

.post__title a:hover {
    text-decoration: underline;
    color: rgba(255, 56, 92);
}

.post__excerpt {
    font-family: "Inter", sans-serif !important;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px;
}

.post__meta {
    font-family: "Inter", sans-serif !important;
    font-size: 13px;
    color: var(--ink);
    opacity: .8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post__meta .dot {
    opacity: .5;
}

@media (min-width: 270px) and (max-width: 767px) {
    .header-section-about-us {
        display: flex;
        justify-content: center;
    }

    .header-section-content {
        text-align: center;
        padding: 50px 20px;
    }

    .heading-one-banner-main-about-us {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.2;
        max-width: 100%;
        color: black;
    }

    .paragraph-main-about-us {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.5em;
        font-family: "Instrument Serif", serif !important;
        color: black;
        margin-top: 1rem;
    }

    .about-us.button-wrapper {
        display: flex;
        gap: 12px;
        /* space between buttons */
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        /* optional spacing */
    }

    .btn {
        min-width: 132px;
        padding: 12px 24px;
        border: none;
        cursor: pointer;
        font-size: 12px;
        border-radius: 12px !important;
        /* updated */
        transition: background-color 0.3s ease;
        text-align: center;
        font-family: "Instrument Serif", serif !important;
        /* updated */
        background-color: #000;
        /* updated */
        color: white;
        /* for readability */
    }

    .start-free {
        background-color: black;
        color: white;
    }

    .start-free:hover {
        background-color: rgb(255, 56, 92);
        color: rgb(255, 255, 255);
    }

    .book-demo {
        background-color: transparent;
        color: black;
        border: 2px solid black;
        height: 2.7rem;
    }

    .book-demo:hover {
        background-color: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
    }


    /* Bar Hero Section */

    :root {
        --ink: #0b0b12;
        --muted: #5b6170;
        --primary: rgb(255, 56, 92);
        /* purple accent similar to the reference */
        --primary-10: rgb(255, 56, 92);
        /* light purple for bg blob */
        /* --card: #fff; */
        --border: #e9e9f0;
        --shadow: 0 10px 30px rgba(16, 24, 40, .08);
        --radius-xl: 24px;
        --radius-lg: 16px;
    }

    .bar-hero {
        padding: clamp(32px, 6vw, 72px) 20px;
    }

    .bar-hero__container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: clamp(28px, 5vw, 60px);
        align-items: center;
    }

    @media (max-width: 940px) {
        .bar-hero__container {
            grid-template-columns: 1fr;
        }
    }

    .bar-hero__title {
        font-size: clamp(12px, 6.2vw, 28px);
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.01em;
        margin: 0 0 16px;
        font-family: "Instrument Serif", serif !important;
    }

    .bar-hero__title .accent {
        color: rgb(255, 56, 92);
    }

    .bar-hero__desc {
        color: var(--muted);
        font-size: clamp(15px, 1.2vw, 18px);
        line-height: 1.7;
        margin: 0 0 28px;
        font-family: "Inter", sans-serif !important;
    }

    .bar-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        max-width: 680px;
    }

    @media (max-width: 520px) {
        .bar-hero__stats {
            grid-template-columns: 1fr;
        }
    }

    .stat {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 22px 20px;
        box-shadow: var(--shadow);
        text-align: center;
    }

    .stat__value {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
        font-family: "Inter", sans-serif !important;
    }

    .stat__label {
        font-size: 12px;
        letter-spacing: .12em;
        color: var(--muted);
        font-family: "Inter", sans-serif !important;
    }

    /* Right side */
    .bar-hero__media {
        position: relative;
        display: grid;
        place-items: center;
    }

    .bar-blob {
        position: absolute;
        right: -30px;
        top: -30px;
        width: clamp(220px, 40vw, 360px);
        height: clamp(220px, 40vw, 360px);
        background: var(--primary-10);
        border-radius: 28px;
        z-index: 0;
        filter: saturate(120%);
    }

    .bar-card {
        width: 100%;
        max-width: 520px;
        background: var(--card);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 1;
        margin: 0;
    }

    .bar-card__img {
        display: block;
        width: 100%;
        height: auto;
    }

    .bar-card__badge {
        position: absolute;
        left: 18px;
        bottom: 18px;
        background: #ffffff;
        border: 1px solid var(--border);
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 14px;
        box-shadow: var(--shadow);
        color: var(--ink);
        font-family: "Inter", sans-serif !important;
    }

    /* What We Do Section (uses your variables) */
    .wwd {
        padding: clamp(32px, 6vw, 72px) 20px;
    }

    .wwd__container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: clamp(28px, 5vw, 60px);
        align-items: center;
    }

    @media (max-width: 940px) {
        .wwd__container {
            grid-template-columns: 1fr;
        }
    }

    /* Left media */
    .wwd__media {
        position: relative;
    }

    .wwd__card {
        background: #fff;
        /* card surface */
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow);
        transform: rotate(-6deg);
        overflow: hidden;
    }

    .wwd__card img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Right copy */
    .wwd__title {
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(26px, 3vw, 40px);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin: 0 0 16px;
        color: var(--ink);
        text-align: left;
    }

    .wwd__title .accent {
        color: var(--primary);
    }

    .wwd__desc {
        font-family: "Inter", sans-serif !important;
        color: var(--muted);
        font-size: clamp(15px, 1.2vw, 18px);
        line-height: 1.8;
        margin: 0 0 14px;
    }

    /* Optional soft blob behind the image (matches your primary color) */
    .wwd__media::after {
        content: "";
        position: absolute;
        right: -26px;
        top: -26px;
        width: clamp(220px, 38vw, 360px);
        height: clamp(220px, 38vw, 360px);
        background: var(--primary-10);
        border-radius: 28px;
        z-index: -1;
        filter: saturate(120%);
    }

    /* Our Mission — follows your palette and type */
    .mission {
        /* soft tint using your primary color */
        background: rgba(255, 56, 92, 0.04);
        padding: clamp(32px, 6vw, 72px) 20px;
    }

    .mission__container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(28px, 5vw, 60px);
        align-items: center;
    }

    @media (max-width: 940px) {
        .mission__container {
            grid-template-columns: 1fr;
        }
    }

    /* Left — copy */
    .mission__title {
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(28px, 3.2vw, 44px);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin: 0 0 16px;
        color: var(--ink);
        text-align: left;
    }

    .mission__desc {
        font-family: "Inter", sans-serif !important;
        color: var(--muted);
        font-size: clamp(15px, 1.2vw, 18px);
        line-height: 1.8;
        margin: 0 0 14px;
    }

    /* Right — media */
    .mission__media {
        position: relative;
        display: grid;
        place-items: center;
    }

    .mission__blob {
        position: absolute;
        right: -28px;
        top: -28px;
        width: clamp(220px, 40vw, 360px);
        height: clamp(220px, 40vw, 360px);
        background: var(--primary-10);
        border-radius: 28px;
        filter: saturate(120%);
        z-index: 0;
    }

    .mission__card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow);
        transform: rotate(8deg);
        overflow: hidden;
        margin: 0;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 560px;
    }

    .mission__img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* What We Offer */
    .offer {
        padding: clamp(28px, 6vw, 64px) 20px;
    }

    .offer__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .offer__title {
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(22px, 2.4vw, 28px);
        text-align: center;
        color: var(--ink);
        margin: 0 0 22px;
        letter-spacing: -0.01em;
    }

    .offer__grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px 16px;
    }

    @media (max-width: 1100px) {
        .offer__grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 900px) {
        .offer__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 640px) {
        .offer__grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .offer__item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        background: var(--card, #fff);
        /* if --card is commented, falls back to white */
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        text-decoration: none;
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }

    .offer__item:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 56, 92, .45);
        box-shadow: 0 14px 30px rgba(16, 24, 40, .10);
    }

    .offer__icon {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        color: var(--ink);
    }

    .offer__icon--accent {
        color: var(--primary);
    }

    .offer__icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    .offer__label {
        font-family: "Inter", sans-serif !important;
        font-size: 14px;
        color: var(--ink);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ===== Testimonial Slider ===== */
    .review-slider {
        padding: clamp(32px, 6vw, 72px) 20px;
        background: rgba(255, 56, 92, .03);
    }

    .rs__container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: clamp(24px, 5vw, 60px);
        align-items: center;
    }

    @media (max-width: 940px) {
        .rs__container {
            grid-template-columns: 1fr;
        }
    }

    /* Left */
    .rs__copy {}

    .rs__quote {
        font-family: "Inter", sans-serif !important;
        color: var(--ink);
        font-size: clamp(18px, 1.6vw, 22px);
        line-height: 1.8;
        margin: 0 0 28px;
        opacity: 1;
        transition: opacity .35s ease;
    }

    .rs__quote.is-fading {
        opacity: 0;
    }

    .rs__brandRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .rs__brand {
        margin: 0;
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(18px, 1.6vw, 24px);
        color: var(--ink);
        letter-spacing: -0.01em;
    }

    .rs__controls {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .rs__btn {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: var(--card, #fff);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        color: var(--ink);
        cursor: pointer;
        transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .rs__btn:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 56, 92, .45);
        box-shadow: 0 14px 30px rgba(16, 24, 40, .10);
    }

    .rs__btn svg {
        width: 22px;
        height: 22px;
    }

    /* Right */
    .rs__media {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--card, #fff);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .rs__track {
        display: flex;
        transition: transform .6s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }

    .rs__slide {
        min-width: 100%;
        position: relative;
        aspect-ratio: 16/10;
        /* responsive height */
        overflow: hidden;
    }

    .rs__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* small decorative rounded preview to the far right (optional) */
    .rs__slide--peek {
        padding-right: 20px;
    }

    .rs__container--outer {
        max-width: 1200px;
        margin: 0 auto;
    }

    .rs__header {
        text-align: center;
        margin-bottom: 40px;
    }

    .rs__heading {
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 800;
        color: var(--ink);
        margin-bottom: 12px;
    }

    .rs__subheading {
        font-family: "Inter", sans-serif !important;
        color: var(--muted);
        font-size: clamp(15px, 1.2vw, 18px);
        line-height: 1.6;
        max-width: 720px;
        margin: 0 auto;
    }

    /* Banner */
    .culture-cta {
        padding: 24px 20px;
        background: transparent;
        /* page bg */
    }

    .culture-cta__wrap {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        border-radius: var(--radius-xl, 24px);
        overflow: hidden;
        box-shadow: var(--shadow, 0 10px 30px rgba(16, 24, 40, .08));
        /* golden gradient */
        /* background: linear-gradient(90deg, rgb(255, 56, 92) 0%, rgb(255, 56, 92) 50%, rgb(255, 56, 92) 100%); */
        background-color: white;
        min-height: 240px;
    }

    /* diagonal light beams */
    .culture-cta__wrap::before,
    .culture-cta__wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .culture-cta__wrap::before {
        /* big beam from top-left */
        background:
            linear-gradient(12deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, .20) 31%, rgba(255, 255, 255, 0.0) 50%);
        transform: translateY(-30%) skewY(-8deg);
        mix-blend-mode: soft-light;
    }

    .culture-cta__wrap::after {
        /* thinner beam along bottom */
        background:
            linear-gradient(-6deg, rgba(255, 255, 255, 0.0) 58%, rgba(255, 255, 255, .25) 59%, rgba(255, 255, 255, 0.0) 68%);
        transform: translateY(22%) skewY(-6deg);
        mix-blend-mode: soft-light;
    }

    /* content */
    .culture-cta__content {
        position: relative;
        z-index: 2;
        padding: 34px 48px;
        max-width: 680px;
        color: var(--ink, #0b0b12);
    }

    .culture-cta__eyebrow {
        margin: 0 0 8px;
        font-family: "Inter", sans-serif !important;
        font-size: 16px;
        color: rgba(11, 11, 18, .9);
    }

    .culture-cta__title {
        margin: 0 0 20px;
        font-family: "Instrument Serif", serif !important;
        font-weight: 800;
        font-size: clamp(28px, 3.2vw, 42px);
        line-height: 1.1;
        letter-spacing: -0.01em;
        color: var(--ink, #0b0b12);
        text-align: left;
    }

    .culture-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 18px;
        border-radius: 10px;
        background: var(--ink, #0b0b12);
        color: #fff;
        font-family: "Inter", sans-serif !important;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        border: 1px solid rgba(0, 0, 0, .15);
        box-shadow: var(--shadow, 0 10px 30px rgba(16, 24, 40, .08));
        /* transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; */
    }

    .culture-cta__btn:hover {
        /* transform: translateY(-2px); */
        /* box-shadow: 0 14px 30px rgba(16, 24, 40, .14); */
        background-color: rgb(255, 56, 92);
    }

    /* right decorative arcs */
    .culture-cta__decor {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: min(50%, 600px);
        z-index: 1;
        opacity: .8;
    }

    /* responsive */
    @media (max-width: 768px) {
        .culture-cta__content {
            padding: 28px;
        }

        .culture-cta__wrap {
            min-height: 220px;
        }
    }


    /* From the Blog (white cards, black text; uses your tokens) */
    .blog {
        padding: clamp(32px, 6vw, 72px) 20px;
        background: #fff;
    }

    .blog__wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    .blog__heading {
        text-align: center;
        margin: 0 0 22px;
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(22px, 2.6vw, 32px);
        color: var(--ink);
        letter-spacing: -0.01em;
    }

    .blog__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    @media (max-width: 1024px) {
        .blog__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 680px) {
        .blog__grid {
            grid-template-columns: 1fr;
        }
    }

    .post {
        background: var(--card, #fff);
        border: 1px solid var(--border);
        border-radius: 24px;
        /* soft like screenshot */
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform .18s ease, box-shadow .18s ease;
    }

    .post:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(16, 24, 40, .12);
    }

    .post__media {
        display: block;
        position: relative;
        overflow: hidden;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .post__media img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .post:hover .post__media img {
        transform: scale(1.04);
    }

    .post__body {
        padding: 18px 18px 20px;
    }

    .post__tag {
        display: inline-block;
        font-family: "Inter", sans-serif !important;
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background-color: rgba(255, 56, 92, 0.2);

        color: black;
        border: 1px solid rgba(255, 56, 92, .25);
        margin-bottom: 10px;
    }

    .post__title {
        margin: 0 0 8px;
        font-family: "Instrument Serif", serif !important;
        font-size: clamp(18px, 1.8vw, 24px);
        line-height: 1.25;
        color: var(--ink);
    }

    .post__title a {
        color: inherit;
        text-decoration: none;
    }

    .post__title a:hover {
        text-decoration: underline;
        color: rgba(255, 56, 92);
    }

    .post__excerpt {
        font-family: "Inter", sans-serif !important;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.75;
        margin: 0 0 14px;
    }

    .post__meta {
        font-family: "Inter", sans-serif !important;
        font-size: 13px;
        color: var(--ink);
        opacity: .8;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .post__meta .dot {
        opacity: .5;
    }
}

.revCls-1 {
color: rgb(255, 56, 92) !important; font-style: italic !important; font-weight: 700 !important;
}
         
      