: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::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 {
    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;
}

/* Sections */
section {
    padding: 96px 0;
}
.section-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-head p {
    margin-top: 14px;
}
.section-head.left {
    margin: 0 0 48px;
    text-align: left;
}

/* Hero */
.hero {
    background: var(--cream);
    padding: 64px 0 72px;   /* was: 64px 0 0 — needs bottom breathing room now that the image is no longer full-bleed to the section edge */
    overflow: hidden;
}
.hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
}
.hero h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
}
.hero-copy p {
    max-width: 560px;
    margin: 22px auto 0;
    font-size: 1.06rem;
}
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* --- everything below this line replaces the old .hero-image rules --- */
.hero-image {
    position: relative;
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.hero-image::before {
    content: "";
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: min(72vw, 460px);
    height: min(72vw, 460px);
    background: radial-gradient(circle, var(--orange-tint) 0%, rgba(243, 217, 199, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.85;
}
.hero-image img {
    position: relative;
    z-index: 1;
    width: min(52vw, 320px);
    height: auto;
    filter: drop-shadow(0 22px 20px rgba(32, 27, 23, 0.28));
}
@media (max-width: 640px) {
    .hero-image img { width: min(62vw, 260px); }
    .hero-image::before { width: min(80vw, 340px); height: min(80vw, 340px); }
}


/* Battles / tabs */
.battles {
    background: var(--white);
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    border-bottom: 1px solid var(--line);
}
.tab-btn {
    background: none;
    border: none;
    padding: 14px 22px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-soft);
    position: relative;
    top: 1px;
    border-bottom: 2px solid transparent;
    transition:
        color 0.18s ease,
        border-color 0.18s ease;
}
.tab-btn:hover {
    color: var(--ink);
}
.tab-btn.active {
    color: var(--ink);
    border-bottom-color: var(--orange);
}

.battle-card {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.battle-card .img-side {
    min-height: 360px;
}
.battle-card .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.battle-card .text-side {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.battle-card h3 {
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    margin-bottom: 14px;
}
.battle-card p {
    margin-bottom: 26px;
}
.battle-card .cta-row {
    display: flex;
    gap: 20px;
    align-items: center;
}
.battle-panel {
    display: none;
}
.battle-panel.active {
    display: block;
    animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    .battle-card {
        grid-template-columns: 1fr;
    }
    .battle-card .img-side {
        min-height: 240px;
        order: -1;
    }
    .battle-card .text-side {
        padding: 32px 28px;
    }
    .tabs {
        gap: 2px;
    }
    .tab-btn {
        padding: 12px 12px;
        font-size: 0.86rem;
    }
}

/* Testimonials */
.testimonials {
    background: var(--cream-soft);
}
.t-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
}
.t-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 34px;
    box-shadow: var(--shadow-card);
}
.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--orange-dark);
}
.stars svg {
    width: 16px;
    height: 16px;
}
.t-quote {
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 26px;
}
.t-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t-who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 42px;
    height: 42px;
    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.95rem;
    overflow: hidden;
    flex-shrink: 0;
}
.t-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.92rem;
}
.t-loc {
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.t-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--cream-soft);
    border: 1px solid var(--line);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
}
.t-badge svg {
    width: 12px;
    height: 12px;
    color: var(--orange-dark);
}
.t-more {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 760px) {
    .t-grid {
        grid-template-columns: 1fr;
    }
}

/* Product */
.product-frame {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    box-shadow: var(--shadow-card);
}
.product-frame .img-side {
    min-height: 380px;
}
.product-frame .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-frame .text-side {
    padding: 48px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-frame h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.7rem);
    margin-bottom: 14px;
}
.product-frame p {
    margin-bottom: 26px;
}
.product-frame .cta-row {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 820px) {
    .product-frame {
        grid-template-columns: 1fr;
    }
    .product-frame .img-side {
        min-height: 240px;
    }
    .product-frame .text-side {
        padding: 32px 28px;
    }
}

/* Steps */
.steps {
    background: var(--white);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.step-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}
.step-card .step-img {
    height: 170px;
}
.step-card .step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.step-card .step-body {
    padding: 26px 26px 28px;
}
.step-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--orange-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.step-card p {
    margin-bottom: 16px;
    font-size: 0.94rem;
}
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact teaser */
.contact {
    background: var(--cream-soft);
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    margin-top: 44px;
    align-items: stretch;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.info-item {
    display: flex;
    gap: 16px;
}
.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange-dark);
}
.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.info-item p {
    font-size: 0.94rem;
}
.info-item .btn-link {
    margin-top: 8px;
}
.map-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 280px;
    background: var(--white);
}
.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 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);
}

/* Product explainer */
.explainer {
    background: var(--cream);
}

/* Video carousel (shared by any .video-track section) */
.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);
}

/* Video 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;
}

@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: 64px 0;
    }
    .wrap {
        padding: 0 20px;
    }
}