:root {
    --ink: #1a1a1a;
    --gold: #f26b3a;
    --teal: #1a1a1a;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

[x-cloak] {
    display: none !important;
}

body {
    margin: 0;
    background: #fff;
    color: #1a1a1a;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.atmosphere {
    position: relative;
    background: #0a2a26;
}

.atmosphere > img.atmosphere-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atmosphere-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 42, 38, 0.72) 0%, rgba(10, 42, 38, 0.55) 55%, rgba(10, 42, 38, 0.7) 100%);
    pointer-events: none;
}

.hero-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.hero-in.is-in {
    opacity: 1;
    transform: none;
}

.prose-bestind :where(p, ul, ol) {
    color: #3d4a47;
    line-height: 1.75;
}

.prose-bestind :where(h2, h3) {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-top: 1.5em;
}

.prose-bestind :where(ul, ol) {
    padding-left: 1.25rem;
}

.prose-bestind li + li {
    margin-top: 0.45rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin: 10px 0 0;
    font-size: 0.875rem;
}

.legal-links a {
    color: #5c5c5c;
    text-decoration: none;
}

.legal-links a:hover {
    color: #f26b3a;
}

.prose-bestind a {
    color: #0f3d38;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Header */
.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    margin: 14px 16px 0;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
    transition: box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
}

.brand {
    color: #f26b3a;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-mark {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #f26b3a;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 20px;
}

.header-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: #1a1a1a;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.header-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1.5px;
    background: #f26b3a;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s var(--ease-out);
}

.header-nav .nav-link:hover,
.header-nav .has-megamenu:hover > .nav-link {
    color: #f26b3a;
}

.header-nav .nav-link:hover::after,
.header-nav .has-megamenu:hover > .nav-link::after,
.header-nav .has-megamenu.is-open > .nav-link::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.mm-caret {
    transition: transform 0.35s var(--ease-out);
}

.has-megamenu:hover > .nav-link .mm-caret,
.has-megamenu.is-open > .nav-link .mm-caret,
.mm-caret.is-open {
    transform: rotate(180deg);
}

.has-megamenu {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 6px);
    width: min(780px, calc(100vw - 48px));
    transform: translateX(-50%) translateY(10px);
    background: #fffdf8;
    border: 1px solid rgba(12, 20, 19, 0.08);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(12, 20, 19, 0.18);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.35s var(--ease-out), visibility 0.3s;
    z-index: 1100;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -28px;
    height: 28px;
}

.has-megamenu:hover .mega-menu,
.has-megamenu:focus-within .mega-menu,
.has-megamenu.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 16px;
}

.mm-feature {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 18px;
    background: #0a2a26;
    color: #f3efe6;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mm-feature-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.6s var(--ease-out);
}

.mm-feature:hover .mm-feature-photo {
    transform: scale(1.1);
}

.mm-feature-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 42, 38, 0.15), rgba(10, 42, 38, 0.82));
}

.mm-feature-copy {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.mm-feature-eyebrow {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f26b3a;
    font-weight: 600;
}

.mm-feature h4 {
    margin: 10px 0 8px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 26px;
    font-weight: 640;
    font-optical-sizing: auto;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.mm-feature p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(243, 239, 230, 0.78);
}

.mm-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0c1413;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.3s, transform 0.3s;
}

.mm-feature:hover .mm-feature-cta {
    gap: 14px;
    transform: translateY(-2px);
}

.mm-grid-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding: 4px 6px 0;
}

.mm-kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a7d45;
    font-weight: 600;
}

.mm-grid-title {
    margin: 4px 0 0;
    font-size: 18px;
    color: #0c1413;
    font-weight: 600;
}

.mm-all {
    color: #0f3d38;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.3s, color 0.3s;
}

.mm-all:hover {
    color: #9a7d45;
}

.mm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.mm-grid-single {
    grid-template-columns: 1fr;
}

.mm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #0c1413;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: background 0.25s, transform 0.25s var(--ease-out), opacity 0.35s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 35ms);
}

.has-megamenu:hover .mm-item,
.has-megamenu:focus-within .mm-item,
.has-megamenu.is-open .mm-item {
    opacity: 1;
    transform: none;
}

.mm-item:hover {
    background: #f3efe6;
    transform: translateX(3px);
}

.mm-ic {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    overflow: hidden;
    background: #ece7dc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #0f3d38;
    transition: transform 0.25s;
}

.mm-ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mm-item:hover .mm-ic {
    transform: scale(1.06);
}

.mm-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.3;
}

.mm-text strong {
    font-size: 13.5px;
    font-weight: 620;
}

.mm-text span {
    margin-top: 2px;
    font-size: 12px;
    color: #6b736f;
}

.header-cta {
    display: none;
    background: #f26b3a;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    transition: transform 0.25s, background 0.25s;
}

.header-cta:hover {
    background: #e25d2c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a1a1a;
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    width: 20px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.25s, opacity 0.25s;
}

.mobile-nav {
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    background: #fff;
    padding: 12px 20px 20px;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 4px;
    color: #1a1a1a;
    background: none;
    border: 0;
    text-align: left;
    font-size: 16px;
    text-decoration: none;
}

.mobile-link.is-expanded .mm-caret {
    transform: rotate(180deg);
}

.mobile-products {
    padding: 0 0 8px 8px;
}

.mobile-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    color: #1a1a1a;
    text-decoration: none;
}

.mobile-product img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
}

.mobile-product strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
}

.mobile-product em {
    display: block;
    font-size: 12px;
    font-style: normal;
    color: #6b6b6b;
}

.mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
}

@media (min-width: 1024px) {
    .header-nav,
    .header-cta {
        display: flex;
    }

    .menu-toggle,
    .mobile-nav {
        display: none !important;
    }
}

.font-display,
h1.font-display,
h2.font-display,
h3.font-display,
blockquote.font-display {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #1a1a1a;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    animation: rise 0.75s var(--ease-out) forwards;
    animation-play-state: paused;
}

[data-reveal].is-in {
    animation-play-state: running;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    margin: 0 auto 16px;
    padding: 8px 18px;
    border: 1px solid #f26b3a;
    border-radius: 999px;
    color: #f26b3a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-orange,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.25s var(--ease-out), background 0.25s, box-shadow 0.25s, color 0.25s;
}

.btn-orange {
    background: #f26b3a;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.btn-orange:hover {
    background: #e25d2c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(242, 107, 58, 0.28);
}

.btn-ghost {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.12);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: #f26b3a;
    color: #f26b3a;
}

.hero-truffle,
.page-hero {
    padding: 28px 0 64px;
    text-align: center;
}

.hero-title,
.page-title {
    margin: 8px auto 0;
    max-width: 16ch;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.hero-lede,
.page-lede {
    margin: 18px auto 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.6;
    color: #5c5c5c;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    margin: 36px auto 0;
    padding: 0 20px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(242, 107, 58, 0.12);
}

.chip-ic {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff1eb;
    color: #f26b3a;
    flex-shrink: 0;
}

.chip-ic svg {
    width: 20px;
    height: 20px;
}

.section-white,
.section-peach {
    padding: 88px 0;
}

.section-peach {
    background: #fff8f4;
}

.section-head,
.section-title {
    text-align: center;
}

.section-head h2,
.section-title,
.cta-band h2 {
    margin: 8px auto 0;
    max-width: 16ch;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-head p:not(.pill) {
    margin: 14px auto 0;
    max-width: 560px;
    color: #5c5c5c;
}

.card-grid,
.benefit-grid {
    display: grid;
    gap: 18px;
    margin-top: 36px;
}

.soft-card {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.soft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(242, 107, 58, 0.14);
}

.soft-card-photo {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.soft-card:hover .soft-card-photo {
    transform: scale(1.06);
}

.soft-card-fallback {
    background: linear-gradient(135deg, #fff1eb, #ffe1d4);
}

.soft-card-body {
    padding: 20px 22px 24px;
}

.card-kicker {
    margin: 0;
    color: #f26b3a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.soft-card h3,
.benefit h3 {
    margin: 8px 0 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.soft-card p,
.benefit p {
    margin: 8px 0 0;
    color: #5c5c5c;
    line-height: 1.55;
}

.benefit {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.04);
    transition: transform 0.35s var(--ease-out);
}

.benefit:hover {
    transform: translateY(-6px);
}

.benefit-mark {
    display: inline-flex;
    color: #f26b3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.quote-card {
    margin-top: 28px;
}

.quote-card blockquote {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.quote-card figcaption {
    margin-top: 16px;
    color: #6b6b6b;
}

.dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #f0d2c6;
    cursor: pointer;
}

.dot.is-on {
    background: #f26b3a;
    transform: scale(1.2);
}

.cta-band {
    margin: 10px 16px 40px;
    padding: 72px 20px;
    border-radius: 28px;
    background: #fff1eb;
}

.cta-band p {
    margin: 14px auto 0;
    max-width: 520px;
    color: #5c5c5c;
}

.cta-band .btn-orange {
    margin-top: 24px;
}

.crm-lead-frame {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
}

.crm-lead-frame iframe {
    display: block;
    width: 100%;
    height: 780px;
    border: 0;
    background: #fff;
}

.site-footer {
    background: #fff;
    color: #1a1a1a;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.footer-logo {
    display: inline-flex;
    text-decoration: none;
}

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

.filter-chip {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.filter-chip.is-on {
    background: #f26b3a;
    border-color: #f26b3a;
    color: #fff;
}

@media (min-width: 768px) {
    .chip-grid,
    .card-grid,
    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
