:root {
    --cream: #f7e4da;
    --cream-soft: #fbf0e9;
    --white: #ffffff;
    --ink: #201b17;
    --ink-soft: #6b615a;
    --line: #e9ddd1;
    --line-soft: #f0e5da;
    --orange: #d97a46;
    --orange-dark: #bd6636;
    --orange-tint: #f3d9c7;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-card:
        0 1px 2px rgba(32, 27, 23, 0.04),
        0 12px 28px -18px rgba(32, 27, 23, 0.22);
    --display: "Plus Jakarta Sans", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --script: "Caveat", cursive;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink);
}
p {
    margin: 0;
    line-height: 1.65;
    color: var(--ink-soft);
}

.eyebrow {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-dark);
    display: block;
    margin-bottom: 14px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    border: 1.5px solid transparent;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    white-space: nowrap;
}
.btn:focus-visible {
    outline: 2.5px solid var(--orange-dark);
    outline-offset: 3px;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline.on-cream {
    border-color: rgba(32, 27, 23, 0.35);
}
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-link svg {
    transition: transform 0.18s ease;
}
.btn-link:hover svg {
    transform: translateX(3px);
}
.btn-sm {
    padding: 9px 18px;
    font-size: 0.86rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-family: var(--script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.nav-links a.current {
    color: var(--orange-dark);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease;
}
.nav-links a:hover::after,
.nav-links a.current::after {
    width: 100%;
}
.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.has-dropdown button {
    background: none;
    border: none;
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
}
.has-dropdown svg {
    transition: transform 0.18s ease;
}
.has-dropdown.open svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 500;
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a:hover {
    background: var(--cream-soft);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-actions .btn-outline {
        display: none;
    }
}

.mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 0 32px 22px;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-panel.open {
    display: flex;
}
.mobile-panel a,
.mobile-panel button.mp-link {
    padding: 12px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
}
.mobile-panel .btn {
    margin-top: 14px;
    justify-content: center;
}

section {
    padding: 88px 0;
}
.section-head {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
}
.section-head p {
    margin-top: 14px;
}

/* Page hero */
.page-hero {
    background: var(--cream);
    padding: 64px 0 56px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    max-width: 760px;
    margin: 0 auto;
}
.page-hero p {
    max-width: 560px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* Filter tabs */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.filter-btn {
    background: #fff;
    border: 1.5px solid var(--line);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.filter-btn:hover {
    border-color: var(--orange);
    color: var(--ink);
}
.filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* Testimonial grid */
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.t-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 30px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.t-card.hidden {
    display: none;
}
.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--orange-dark);
}
.stars svg {
    width: 15px;
    height: 15px;
}
.t-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-dark);
    background: var(--orange-tint);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    width: fit-content;
}
.t-quote {
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}
.t-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}
.t-who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    color: var(--orange-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.t-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.9rem;
}
.t-loc {
    font-size: 0.8rem;
    color: var(--ink-soft);
}
.t-badge svg {
    width: 13px;
    height: 13px;
    color: var(--orange-dark);
}
@media (max-width: 980px) {
    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 660px) {
    .t-grid {
        grid-template-columns: 1fr;
    }
}

/* Video section */
.video-section {
    background: var(--cream-soft);
}
.carousel {
    position: relative;
    margin-top: 48px;
}
.video-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--orange-tint) transparent;
}
.video-track::-webkit-scrollbar {
    height: 6px;
}
.video-track::-webkit-scrollbar-thumb {
    background: var(--orange-tint);
    border-radius: var(--radius-pill);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-dark);
    z-index: 5;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.carousel-btn:hover {
    transform: translateY(-50%) scale(1.06);
}
.carousel-btn.prev {
    left: -14px;
}
.carousel-btn.next {
    right: -14px;
}
.carousel-btn.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}
@media (max-width: 720px) {
    .carousel-btn {
        display: none;
    }
}
.video-card {
    position: relative;
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    background: #000;
}
@media (max-width: 720px) {
    .video-card {
        width: 210px;
    }
}
.video-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    opacity: 0.88;
    transition:
        opacity 0.2s ease,
        transform 0.3s ease;
}
.video-card:hover img {
    opacity: 0.7;
    transform: scale(1.03);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease;
}
.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}
.play-btn svg {
    margin-left: 3px;
    color: var(--orange-dark);
}
.video-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}
.video-meta .v-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}
.video-meta .v-loc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}
/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 13, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: #0d0b0a;
    border-radius: var(--radius-md);
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
}
.modal-media {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}
.modal-media video {
    width: 100%;
    max-height: 78vh;
    display: block;
}
.modal-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    animation: modal-spin 0.8s linear infinite;
    z-index: 1;
}
.modal-spinner.hide {
    display: none;
}
@keyframes modal-spin {
    to {
        transform: rotate(360deg);
    }
}
.modal-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

/* CTA banner */
.cta-banner {
    background: var(--ink);
    text-align: center;
    padding: 80px 0;
}
.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 16px auto 30px;
}
.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.cta-banner .btn-outline:hover {
    background: #fff;
    color: var(--ink);
}

/* Footer */
footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 36px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.footer-nav a:hover {
    color: var(--ink);
}
.social-row {
    display: flex;
    gap: 12px;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.social-row a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.disclaimer {
    border-top: 1px solid var(--line-soft);
    padding: 26px 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 900px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.legal-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.legal-links a:hover {
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }
    .wrap {
        padding: 0 20px;
    }
}