:root {
    --ink: #0a0a0a;
    --muted: #666;
    --line: #dedbd6;
    --paper: #fff;
    --soft: #f6f4f1;
    --tan: #FF0000;
    --gold: #FF0000;
    --yellow: #fff600;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(22,17,12,.12);
    --serif: Georgia,'Times New Roman',serif;
    --sans: Arial,Helvetica,sans-serif
}
.footer-brand .brand {
    color: #000 !important;
    text-decoration: none;
}

.footer-brand .brand-names {
    display: flex;
    align-items: baseline;
    gap: 12px;
    white-space: nowrap;
}

.footer-brand .brand-office,
.footer-brand .brand-names span {
    color: #000 !important;
}

.footer-brand .brand-office {
    font-size: 24px;
    font-weight: 700;
}

.footer-brand .brand-names span {
    font-size: 22px;
    font-weight: 800;
}

.footer-brand .brand small {
    display: block;
    /* color: var(--brand-red); */
    margin-top: 4px;
}
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.5;
    overflow-x: clip
}

body.menu-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,input,textarea {
    font: inherit
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 1000;
    background: #000;
    color: #fff;
    padding: 12px 18px
}

.skip-link:focus {
    top: 12px
}

.section {
    width: min(1240px,calc(100% - 56px));
    margin-inline:auto;padding: 80px 0
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 20px;
    font-weight: 800;
    color: var(--tan)
}

.site-header {
    height: 78px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.08)
}

.nav-shell {
    height: 100%;
    width: min(1320px,calc(100% - 48px));
    margin: auto;
    display: flex;
    align-items: center;
    gap: 32px
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    margin-right: auto
}

.brand span {
    font-family: var(--serif);
    font-size: 23px;
    font-style: italic;
    font-weight: 800
}

.brand small {
    font-size: 12px;
    color: var(--tan);
    font-weight: 700;
    margin-top: 6px
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px
}

.site-nav a {
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 29px 0
}

.site-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--ink);
    transition: right .25s
}

.site-nav a:hover:after,.site-nav a.active:after {
    right: 0
}

.header-order {
    background: #000;
    color: #fff;
    padding: 13px 18px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    transition: transform .2s,box-shadow .2s
}

.header-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(0,0,0,.2)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 46px;
    height: 46px;
    padding: 11px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #000;
    margin: 6px 0;
    transition: .25s
}

.hero {
    min-height: 680px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #fff
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('../images/Croc-Banner.jpg.jpeg') center/cover no-repeat;
    transform: scale(1.01);
    animation: hero-in 1.2s ease both
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1320px,calc(100% - 56px));
    margin: auto;
    padding: 80px 0;
    pointer-events: none
}

.hero-content>* {
    pointer-events: auto
}

.hero h1 {
    font: italic 700 clamp(58px,7vw,94px)/.96 var(--serif);
    letter-spacing: -.045em;
    margin: 0;
    max-width: 620px
}

.script-line {
    font: italic 400 clamp(38px,4.4vw,60px)/1 var(--serif);
    color: var(--tan);
    margin: 12px 0 18px
}

.hero-copy {
    font-size: 20px;
    line-height: 1.35;
    max-width: 570px;
    margin: 0 0 30px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn {
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #000;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .03em;
    font-weight: 800;
    transition: transform .2s,box-shadow .2s,background .2s,color .2s;
    position: relative;
    overflow: hidden
}

.btn:after {
    content: "";
    position: absolute;
    top: -80%;
    left: -55%;
    width: 40%;
    height: 260%;
    background: rgba(255,255,255,.25);
    transform: rotate(25deg);
    transition: left .55s
}

.btn:hover:after {
    left: 120%
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.18)
}

.btn-dark {
    background: #000;
    color: #fff
}

.btn-light {
    background: #fff;
    color: #000
}

.btn-wide {
    width: 100%
}

.trust-inline {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px
}

.section-heading span {
    font: 700 18px var(--serif);
    color: var(--tan);
    position: relative
}

.section-heading span:before,.section-heading span:after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 2px;
    background: var(--tan);
    vertical-align: middle;
    margin: 0 22px
}

.section-heading h2 {
    font: 700 clamp(34px,4vw,50px)/1.08 var(--serif);
    text-transform: uppercase;
    margin: 12px 0 14px
}

.section-heading p {
    color: var(--muted);
    font-size: 17px
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff
}

.showcase-photo {
    min-height: 580px
}

.showcase-photo img {
    height: 100%;
    object-fit: cover
}

.showcase-copy {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.patent-sketch {
    height: 210px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-bottom: 20px
}

.showcase-copy h3 {
    font: 700 32px/1.1 var(--serif);
    margin: 0 0 14px
}

.showcase-copy p {
    font-size: 17px;
    color: var(--muted)
}

.text-link {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .06em
}

.text-link span {
    display: inline-block;
    transition: transform .2s
}

.text-link:hover span {
    transform: translateX(6px)
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 26px
}

.feature-grid article {
    text-align: center;
    padding: 30px 16px;
    border-right: 1px solid var(--line)
}

.feature-grid article:last-child {
    border: 0
}

.feature-icon {
    display: block;
    font: 32px var(--serif);
    min-height: 42px
}

.feature-grid h3 {
    font-size: 14px;
    line-height: 1.2;
    margin: 12px 0 8px
}

.feature-grid p {
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted);
    margin: 0
}

.order-band {
    padding: 28px 42px!important;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 230px 1fr 220px;
    gap: 34px;
    align-items: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.06)
}

.price-block {
    display: grid;
    grid-template-columns: auto 1fr
}

.price-block>span {
    grid-column: 1/-1;
    font-weight: 800;
    text-transform: uppercase
}

.price-block strong {
    font-size: 76px;
    line-height: .9
}

.price-block sup {
    font-size: 30px
}

.price-block small {
    align-self: center;
    color: var(--tan);
    font-size: 11px;
    font-weight: 800
}

.order-contact {
    border-left: 3px solid #000;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 700
}

.order-contact span {
    font-size: 13px
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 18px
}

.lifestyle-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 15px
}

.lifestyle-grid .tall {
    grid-row: 1/3
}

.lifestyle-grid img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.lifestyle-grid figure:hover img {
    transform: scale(1.045)
}

.benefit-strip {
    width: min(1240px,calc(100% - 56px));
    margin: 0 auto 60px;
    background: var(--soft);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 24px
}

.benefit-strip div {
    text-align: center;
    border-right: 1px solid #d5d0c9
}

.benefit-strip div:last-child {
    border: 0
}

.benefit-strip b,.benefit-strip span {
    display: block
}

.benefit-strip b {
    text-transform: uppercase;
    font-size: 12px
}

.benefit-strip span {
    font-size: 12px;
    color: var(--muted)
}

.reviews {
    padding-top: 20px
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr)
}

.review-grid blockquote {
    margin: 0;
    padding: 10px 36px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.review-grid blockquote:last-child {
    border: 0
}

.review-grid blockquote div {
    color: var(--tan);
    font-size: 24px;
    letter-spacing: 2px
}

.review-grid p {
    font-family: var(--serif);
    font-size: 18px
}

.review-grid cite {
    font-size: 13px;
    font-weight: 800
}

.page-hero {
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    background-color: #ead6c4;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 80px 28px
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none
}

.page-hero::before {
    display: none
}

.page-hero::after {
    z-index: 1;
    background:
        linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)),
        url('../images/bannerinner.png') center/100% 100% no-repeat
}

.page-hero.compact {
    min-height: 390px
}

.page-hero>div {
    max-width: 820px;
    position: relative;
    z-index: 2
}

.page-hero h1 {
    font: italic 700 clamp(48px,7vw,60px)/1 var(--serif);
    margin: 0 0 22px;
    /* letter-spacing: -.04em; */
}

.page-hero p:not(.eyebrow) {
    font-size: 23px;
    color: #555;
    max-width: 734px;
    margin-inline:auto
    }

.product-detail {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px
}

.gallery-main {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 10px
}

.gallery-thumbs button {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff
}

.gallery-thumbs button:hover,.gallery-thumbs button.active {
    border-color: #000
}

.gallery-thumbs img {
    aspect-ratio: 1;
    object-fit: cover
}

.product-info {
    align-self: center
}

.product-info h2 {
    font: 700 clamp(36px,4vw,40px)/1.05 var(--serif);
    margin: 0 0 18px
}

.rating {
    color: var(--tan);
    font-weight: 800
}

.rating span {
    color: var(--muted);
    font-size: 13px
}

.product-price {
    font-size: 44px;
    font-weight: 800;
    margin: 18px 0
}

.product-price small {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--tan)
}

.product-info>p {
    color: var(--muted);
    font-size: 17px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 30px
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tan);
    font-weight: 900
}

.secure-note,.form-note {
    font-size: 12px!important;
    color: var(--muted);
    text-align: center
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background: var(--soft);
    width: min(1320px,calc(100% - 40px));
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 80px
}

.split-feature h2,.story h2,.cta h2 {
    font: 700 clamp(36px,4vw,56px)/1.05 var(--serif);
    margin: 0 0 20px
}

.split-feature img {
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.split-feature dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #d6d0c8
}

.split-feature dl div {
    background: var(--soft);
    padding: 16px
}

.split-feature dt {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    color: var(--tan)
}

.split-feature dd {
    margin: 3px 0 0;
    font-weight: 700
}

.about-hero {
    background-color: #5b4435;
    color: #fff
}

.about-hero::after {
    background:
        linear-gradient(rgba(0,0,0,.42),rgba(0,0,0,.42)),
        url('../images/bannerinner.png') center/100% 100% no-repeat
}

.about-hero>div {
    text-shadow: 0 2px 12px rgba(0,0,0,.72)
}

.about-hero p:not(.eyebrow) {
    color: #fff
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    background: #eee
}

.story-image img {
    min-height: 540px;
    object-fit: cover;
    object-position: 65% center
}

.story>div>p:not(.eyebrow) {
    font-size: 17px;
    color: var(--muted)
}

.values {
    display: grid;
    gap: 10px;
    margin-top: 24px
}

.values span {
    background: var(--soft);
    padding: 16px;
    border-radius: 8px
}

.values b {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--tan)
}

.cta {
    text-align: center;
    background: linear-gradient(135deg,#f8f5f1,#eee3d6);
    border-radius: 22px;
    margin-bottom: 80px
}

.cta>p:not(.eyebrow) {
    font-size: 18px
}

.order-layout,.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: start
}

.order-summary,.form-card,.contact-cards>a,.contact-cards>div {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.07)
}

.order-summary {
    overflow: hidden;
    position: sticky;
    top: 100px
}

.order-summary>img {
    aspect-ratio: 1.25;
    object-fit: cover
}

.order-summary>div {
    padding: 30px
}

.order-summary h2 {
    font: 700 31px/1.1 var(--serif);
    margin: 0
}

.summary-price {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 20px 0
}

.summary-price strong {
    font-size: 52px
}

.summary-price span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase
}

.form-card {
    padding: 40px
}

.form-card>h2 {
    font: 700 38px var(--serif);
    margin: 0 0 5px
}

.form-card>p {
    color: var(--muted);
    margin-top: 0
}

.order-form {
    display: grid;
    gap: 16px;
    margin-top: 26px
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.order-form label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .04em
}

.order-form label span {
    font-weight: 400;
    color: var(--muted);
    text-transform: none
}

.order-form input,.order-form textarea {
    width: 100%;
    border: 1px solid #cfc9c2;
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    outline: none;
    text-transform: none;
    font-weight: 400
}

.order-form input:focus,.order-form textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,.08)
}

.order-form textarea {
    resize: vertical
}

.consent {
    grid-template-columns: 20px 1fr!important;
    align-items: start
}

.consent input {
    width: 18px;
    height: 18px
}

.hp {
    position: absolute!important;
    left: -9999px!important
}

.contact-cards {
    display: grid;
    gap: 15px
}

.contact-cards>a,.contact-cards>div {
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s
}

.contact-cards>a:hover {
    transform: translateY(-3px)
}

.contact-cards span {
    font-size: 25px
}

.contact-cards small {
    text-transform: uppercase;
    font-size: 11px;
    color: var(--tan);
    font-weight: 800
}

.contact-cards strong {
    font-size: 18px
}

.thanks {
    text-align: center;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.thanks-mark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 34px;
    margin-bottom: 25px
}

.thanks h1,.legal h1 {
    font: 700 clamp(48px,7vw,80px) var(--serif);
    margin: 0
}

.thanks>p:not(.eyebrow) {
    max-width: 600px;
    color: var(--muted);
    font-size: 18px
}

.thanks>div:last-child {
    display: flex;
    gap: 14px
}

.legal {
    max-width: 820px
}

.legal h2 {
    font: 700 30px var(--serif);
    margin: 36px 0 5px
}

.legal p {
    color: #444
}

.legal a {
    text-decoration: underline
}

.site-footer {
    background: var(--yellow);
    padding: 34px max(28px,calc((100% - 1240px)/2)) 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 7px;
}

.footer-grid nav a {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 800
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 17px;
    font-weight: 700
}

.footer-bottom {
    font-weight: 700;
    border-top: 1px solid #000;
    margin-top: 26px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.mobile-buy {
    display: none
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #000;
    color: #fff;
    z-index: 60;
    opacity: 0;
    transform: translateY(12px);
    transition: .25s;
    cursor: pointer
}

.back-top.show {
    opacity: 1;
    transform: none
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease,transform .7s ease;
    transition-delay: var(--delay,0ms)
}

[data-aos="fade-right"] {
    transform: translateX(-38px)
}

[data-aos="fade-left"] {
    transform: translateX(38px)
}

[data-aos="zoom-in"] {
    transform: scale(.96)
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none
}

@keyframes hero-in {
    from {
        opacity: .35;
        transform: scale(1.05)
    }

    to {
        opacity: 1;
        transform: scale(1.01)
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,*:before,*:after {
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important
    }

    [data-aos] {
        opacity: 1;
        transform: none
    }
}

@media (max-width: 1050px) {
    .site-nav {
        gap:20px
    }

    .header-order {
        display: none
    }

    .hero {
        min-height: 650px
    }

    .feature-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .feature-grid article:nth-child(3) {
        border-right: 0
    }

    .feature-grid article:nth-child(-n+3) {
        border-bottom: 1px solid var(--line)
    }

    .order-band {
        grid-template-columns: 190px 1fr
    }

    .order-band>.btn {
        grid-column: 1/-1
    }

    .product-detail,.order-layout,.contact-layout {
        gap: 30px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-contact {
        grid-column: 1/-1;
        flex-direction: row
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom:66px
    }

    .section {
        width: min(100% - 32px,620px);
        padding: 58px 0
    }

    .site-header {
        height: 70px
    }

    .nav-shell {
        width: calc(100% - 28px);
        gap: 8px
    }

    .brand span {
        font-size: 18px
    }

    .brand small {
        font-size: 9px
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        position: fixed;
        inset: 70px 0 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        transform: translateX(100%);
        transition: transform .3s
    }

    .site-nav.open {
        transform: none
    }

    .site-nav a {
        font: 700 30px var(--serif);
        text-transform: none;
        padding: 18px;
        border-bottom: 1px solid var(--line)
    }

    .site-nav a:after {
        display: none
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .hero {
        min-height: 0;
        display: flex;
        flex-direction: column;
        padding: 0
    }

    .hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: 54vh;
        min-height: 390px;
        background-position: 69% center;
        order: 1
    }

    .hero-content {
        order: 2;
        width: 100%;
        padding: 34px 20px 28px;
        background: #fff
    }

    .hero h1 {
        font-size: 52px;
        line-height: .94
    }

    .script-line {
        font-size: 38px
    }

    .hero-copy {
        font-size: 17px
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .hero-actions .btn {
        padding: 0 12px;
        font-size: 12px
    }

    .trust-inline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        font-size: 11px
    }

    .trust-inline span:last-child {
        grid-column: 1/-1
    }

    .section-heading span:before,.section-heading span:after {
        width: 22px;
        margin: 0 10px
    }

    .section-heading h2 {
        font-size: 34px
    }

    .product-showcase {
        grid-template-columns: 1fr
    }

    .showcase-photo {
        min-height: 0
    }

    .showcase-photo img {
        aspect-ratio: 1/1;
        object-fit: cover
    }

    .showcase-copy {
        padding: 28px
    }

    .patent-sketch {
        height: 160px
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr
    }

    .feature-grid article {
        border-right: 1px solid var(--line)!important;
        border-bottom: 1px solid var(--line)
    }

    .feature-grid article:nth-child(even) {
        border-right: 0!important
    }

    .feature-grid article:nth-last-child(-n+2) {
        border-bottom: 0
    }

    .order-band {
        grid-template-columns: 1fr;
        padding: 28px!important;
        text-align: center
    }

    .order-contact {
        border-left: 0;
        border-top: 2px solid #000;
        padding: 22px 0 0
    }

    .lifestyle-grid {
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory;
        margin-right: -16px;
        padding-right: 16px
    }

    .lifestyle-grid figure,.lifestyle-grid .tall {
        min-width: 86vw;
        height: 440px;
        scroll-snap-align: center
    }

    .benefit-strip {
        width: calc(100% - 32px);
        grid-template-columns: 1fr 1fr;
        padding: 12px
    }

    .benefit-strip div {
        padding: 14px;
        border-bottom: 1px solid #d5d0c9
    }

    .benefit-strip div:nth-child(2) {
        border-right: 0
    }

    .benefit-strip div:nth-last-child(-n+2) {
        border-bottom: 0
    }

    .review-grid {
        grid-template-columns: 1fr
    }

    .review-grid blockquote {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 25px 10px
    }

    .review-grid blockquote:last-child {
        border: 0
    }

    .page-hero,.page-hero.compact {
        min-height: 340px;
        padding: 60px 20px
    }

    .page-hero h1 {
        font-size: 50px
    }

    .product-detail,.split-feature,.story,.order-layout,.contact-layout {
        grid-template-columns: 1fr
    }

    .product-detail {
        gap: 35px
    }

    .gallery {
        margin-inline:-16px}

    .gallery-main {
        border-radius: 0
    }

    .gallery-thumbs {
        padding: 0 16px
    }

    .split-feature {
        width: calc(100% - 20px);
        padding: 36px 20px;
        gap: 30px
    }

    .split-feature img {
        grid-row: 1
    }

    .story {
        gap: 32px
    }

    .story-image img {
        min-height: 420px;
        object-position: 68%
    }

    .order-page-hero {
        padding-bottom: 72px!important
    }

    .order-layout {
        margin-top: -55px;
        position: relative
    }

    .order-summary {
        position: static
    }

    .order-summary>div {
        padding: 24px
    }

    .form-card {
        padding: 24px 18px
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .contact-cards {
        order: 2
    }

    .summary-price strong {
        font-size: 46px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .footer-contact {
        grid-column: auto;
        flex-direction: column
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px
    }

    .mobile-buy {
        position: fixed;
        z-index: 80;
        bottom: 0;
        left: 0;
        right: 0;
        height: 66px;
        background: #000;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 800;
        box-shadow: 0 -8px 24px rgba(0,0,0,.18)
    }

    .mobile-buy strong {
        font-size: 24px;
        color: var(--gold)
    }

    .back-top {
        bottom: 82px
    }
}

@media (max-width: 390px) {
    .brand span {
        font-size:16px
    }

    .brand small {
        max-width: 245px
    }

    .hero-media {
        height: 50vh;
        min-height: 350px
    }

    .hero h1 {
        font-size: 46px
    }

    .script-line {
        font-size: 34px
    }

    .hero-actions {
        grid-template-columns: 1fr
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .feature-grid article {
        border-right: 0!important
    }

    .feature-grid article:nth-last-child(2) {
        border-bottom: 1px solid var(--line)
    }

    .lifestyle-grid figure,.lifestyle-grid .tall {
        min-width: 88vw;
        height: 390px
    }

    .page-hero h1 {
        font-size: 43px
    }

    .form-card>h2 {
        font-size: 32px
    }
}

/* PSD typography and revision overrides */
:root {
    --sans: 'Poppins',Arial,Helvetica,sans-serif
}

.site-header {
    height: 94px
}

.nav-shell {
    width: min(1390px,calc(100% - 56px))
}

.brand span {
    font-family: 'Lobster',cursive;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .005em;
    white-space: nowrap
}

.brand small {
    font-family: 'Poppins',sans-serif;
    font-size: 12px;
    margin-top: 7px;
    letter-spacing: .015em
}

.site-nav a {
    padding: 37px 0 31px
}

.site-nav a:after {
    bottom: 25px
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(36px);
    animation: hero-text-rise .78s cubic-bezier(.2,.7,.2,1) forwards
}

.hero-kicker {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-text-rise .55s .2s ease forwards
}

.hero-line-one {
    animation-delay: .35s
}

.hero-line-two {
    animation-delay: .52s
}

.hero-line-three {
    animation-delay: .69s
}

.hero-copy,.hero-actions,.trust-inline {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-text-rise .65s ease forwards
}

.hero-copy {
    animation-delay: .84s
}

.hero-actions {
    animation-delay: .98s
}

.trust-inline {
    animation-delay: 1.12s
}

@keyframes hero-text-rise {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.intro {
    padding-top: 62px
}

.intro .section-heading {
    margin-bottom: 28px
}

.psd-product-board {
    display: block;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 55px rgba(20,15,10,.08)
}

.psd-product-board img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 889/380;
    object-fit: cover
}

.intro .feature-grid {
    margin-top: 0;
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(20,15,10,.06)
}

.intro .order-band {
    margin-top: 18px;
    width: 100%
}

.product-detail {
    align-items: start
}

.gallery {
    align-self: start;
    min-width: 0
}

.gallery-main {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    aspect-ratio: 1/1;
    object-fit: cover
}

.gallery-thumbs img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1
}

.product-info {
    align-self: center
}

@media (max-width: 1050px) {
    .site-header {
        height:86px
    }

    .site-nav a {
        padding: 33px 0 28px
    }

    .site-nav a:after {
        bottom: 21px
    }

    .brand span {
        font-size: 30px
    }

    .product-detail {
        grid-template-columns: 1fr 1fr
    }

    .gallery-main {
        max-height: 560px
    }
}

@media (max-width: 760px) {
    .site-header {
        height:76px
    }

    .brand span {
        font-size: 23px
    }

    .brand small {
        font-size: 8.5px;
        margin-top: 5px
    }

    .site-nav {
        inset: 76px 0 0
    }

    .nav-shell {
        width: calc(100% - 24px)
    }

    .hero h1 {
        overflow: visible
    }

    .intro {
        width: 100%;
        padding-top: 48px
    }

    .intro .section-heading {
        padding-inline:16px}

    .psd-product-board {
        border-radius: 0;
        border-inline:0}

    .psd-product-board img {
        aspect-ratio: auto
    }

    .intro .feature-grid {
        margin-inline:16px;border-radius: 12px
    }

    .intro .order-band {
        width: calc(100% - 32px);
        margin: 16px auto 0
    }

    .product-detail {
        grid-template-columns: 1fr
    }

    .gallery-main {
        height: auto;
        max-height: none;
        aspect-ratio: 1/1
    }

    .gallery-thumbs img {
        height: auto
    }

    .footer-grid .brand span {
        font-size: 27px
    }
}

@media (max-width: 390px) {
    .brand span {
        font-size:21px
    }

    .brand small {
        max-width: none;
        font-size: 8px
    }

    .hero-line {
        will-change: transform,opacity
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-line,.hero-kicker,.hero-copy,.hero-actions,.trust-inline {
        opacity: 1;
        transform: none;
        animation: none!important
    }
}

/* Mobile hero: keep Jimmy, the holder and the sales message inside one banner. */
@media (max-width: 760px) {
    .hero {
        min-height:calc(100svh - 76px);
        display: grid;
        align-items: stretch;
        isolation: isolate;
        padding: 0;
        background: #fff;
    }

    .hero-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        background-color: #fff;
        background-size: auto clamp(330px,44svh,390px);
        background-position: right top;
        background-repeat: no-repeat;
        transform: none;
    }

    .hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,transparent 0,transparent 36%,rgba(255,255,255,.7) 45%,#fff 51%,#fff 100%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        order: initial;
        width: 100%;
        min-height: calc(100svh - 76px);
        margin: 0;
        padding: clamp(300px,41svh,350px) 20px 24px;
        background: transparent;
        align-self: stretch;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: .17em;
        margin-bottom: 12px
    }

    .hero h1 {
        max-width: 350px;
        font-size: clamp(43px,12.5vw,52px);
        line-height: .88;
        letter-spacing: -.045em
    }

    .script-line {
        font-size: clamp(29px,8.7vw,38px);
        margin: 9px 0 12px
    }

    .hero-copy {
        max-width: 430px;
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.45
    }

    .hero-actions {
        gap: 10px
    }

    .hero-actions .btn {
        min-height: 48px
    }

    .trust-inline {
        margin-top: 15px
    }
}

@media (max-width: 390px) {
    .hero-content {
        padding-inline:18px
    }

    .hero h1 {
        font-size: 44px
    }

    .script-line {
        font-size: 30px
    }
}

@media (max-width: 760px) and (max-height:720px) {
    .hero-media {
        background-size:auto 285px
    }

    .hero-content {
        padding-top: 250px;
        padding-bottom: 18px
    }

    .hero h1 {
        font-size: 40px
    }

    .script-line {
        font-size: 27px;
        margin-block:7px 9px}

    .hero-copy {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 13px
    }

    .hero-actions .btn {
        min-height: 43px
    }

    .hero-actions .btn-light {
        display: none
    }

    .trust-inline {
        display: none
    }
}

/* Mobile navigation drawer: opaque, evenly spaced and independent of page content. */
@media (max-width: 760px) {
    .site-header {
        background:#fff;
        backdrop-filter: none
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: block;
        flex: 0 0 46px;
        border-radius: 50%;
        transition: background .25s ease
    }

    .menu-toggle:hover,.menu-toggle:focus-visible {
        background: #f5f1ec
    }

    .menu-toggle span {
        height: 2px;
        margin: 6px 0;
        border-radius: 2px;
        transition: transform .32s cubic-bezier(.22,1,.36,1),opacity .2s ease
    }

    .site-nav {
        position: fixed;
        z-index: 1001;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        height: calc(100dvh - 76px);
        padding: 24px 24px max(28px,env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #fff!important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(100%,0,0);
        transition: transform .38s cubic-bezier(.22,1,.36,1),opacity .22s ease,visibility 0s linear .38s;
        box-shadow: -18px 0 45px rgba(0,0,0,.08);
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0,0,0);
        transition: transform .38s cubic-bezier(.22,1,.36,1),opacity .22s ease;
    }

    .site-nav a {
        width: 100%;
        padding: 19px 4px 18px;
        border-bottom: 1px solid #dfd9d1;
        font: 600 21px/1.25 'Poppins',Arial,sans-serif;
        letter-spacing: .02em;
        text-transform: uppercase;
        opacity: 0;
        transform: translateX(22px);
        transition: color .2s ease,opacity .28s ease,transform .34s cubic-bezier(.22,1,.36,1);
    }

    .site-nav.open a {
        opacity: 1;
        transform: none
    }

    .site-nav.open a:nth-child(1) {
        transition-delay: .05s
    }

    .site-nav.open a:nth-child(2) {
        transition-delay: .09s
    }

    .site-nav.open a:nth-child(3) {
        transition-delay: .13s
    }

    .site-nav.open a:nth-child(4) {
        transition-delay: .17s
    }

    .site-nav a.active {
        color: var(--tan)
    }

    .site-nav a::after {
        display: none
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none
    }

    .video-shell video {
        height: auto;
        aspect-ratio: 16/9;
        object-fit: contain;
        background: #000
    }
}

/* Continuous PSD product panel, original icons, carousel and product loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #080808;
    color: #fff;
    transition: opacity .5s ease,visibility .5s ease
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.loader-inner>strong {
    font: 400 clamp(31px,5vw,48px)/1 'Lobster',cursive;
    margin-top: 25px
}

.loader-inner>small {
    margin-top: 7px;
    color: #c9c1b8;
    font: 500 10px/1.4 'Poppins',sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase
}

.loader-holder {
    position: relative;
    width: 78px;
    height: 94px;
    border: 3px solid #fff;
    border-radius: 12px 12px 16px 16px;
    animation: loader-float 1.25s ease-in-out infinite
}

.loader-loop {
    position: absolute;
    width: 28px;
    height: 31px;
    left: 22px;
    top: -29px;
    border: 3px solid #fff;
    border-bottom: 0;
    border-radius: 6px 6px 0 0
}

.loader-pocket {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    height: 54px;
    border: 3px solid var(--gold);
    border-radius: 5px 5px 14px 14px;
    animation: loader-pocket 1.25s ease-in-out infinite
}

.loader-pen {
    position: absolute;
    right: 4px;
    top: 22px;
    width: 4px;
    height: 51px;
    border-radius: 4px;
    background: var(--yellow);
    transform: rotate(8deg);
    box-shadow: 0 0 0 2px #080808
}

.loader-progress {
    width: 190px;
    height: 2px;
    background: #323232;
    margin-top: 22px;
    overflow: hidden
}

.loader-progress i {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg,var(--tan),var(--gold));
    animation: loader-progress 1.05s ease-in-out infinite
}

.site-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

@keyframes loader-float {
    50% {
        transform: translateY(-8px)
    }
}

@keyframes loader-pocket {
    50% {
        border-color: #f1b666
    }
}

@keyframes loader-progress {
    from {
        transform: translateX(-110%)
    }

    to {
        transform: translateX(330%)
    }
}

.trust-inline span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.trust-inline img {
    width: auto;
    height: auto;
    max-width: 42px;
    max-height: 25px;
    object-fit: contain;
    flex: none
}

.intro {
    max-width: 1240px;
    padding-bottom: 26px
}

.intro .section-heading {
    max-width: 1080px
}

.psd-product-board {
    box-shadow: 0 22px 60px rgba(20,15,10,.075)
}

.intro .feature-grid {
    border-top: 0;
    border-radius: 0;
    box-shadow: none
}

.feature-icon {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 58px;
    max-height: 34px;
    object-fit: contain
}

.feature-grid h3 {
    font-family: 'Poppins',sans-serif;
    font-size: 13px;
    font-weight: 700
}

.feature-grid p {
    font-family: 'Poppins',sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45
}

.intro .order-band {
    margin: 0;
    width: 100%;
    border-top: 0;
    border-radius: 0;
    padding: 28px 38px!important;
    box-shadow: none
}

.order-contact {
    gap: 8px
}

.order-contact a,.order-contact span {
    display: flex;
    align-items: center;
    gap: 12px
}

.order-contact img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: none
}

.order-action {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.order-action .btn {
    width: 100%
}

.order-action>span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600
}

.order-action>span img {
    width: 25px;
    height: 25px;
    object-fit: contain
}

.intro .benefit-strip {
    width: 100%;
    margin: 0;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: #f8f7f5;
    padding: 15px 22px
}

.benefit-strip>div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 4px 14px;
    text-align: left
}

.benefit-strip>div>img {
    display: block;
    width: auto;
    height: auto;
    max-width: 48px;
    max-height: 29px;
    object-fit: contain;
    flex: none
}

.benefit-strip>div>span {
    display: block
}

.benefit-strip b {
    font: 700 10px/1.2 'Poppins',sans-serif
}

.benefit-strip em {
    display: block;
    color: #444;
    font: 400 9px/1.3 'Poppins',sans-serif;
    font-style: normal;
    margin-top: 2px
}

.reviews {
    padding-top: 26px
}

.testimonial-slider {
    position: relative;
    width: min(920px,100%);
    margin: 0 auto;
    padding: 0 78px 52px
}

.slider-viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg,#fff,#f8f4ef);
    box-shadow: 0 22px 60px rgba(20,15,10,.09)
}

.slider-track {
    position: relative;
    min-height: 280px
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 48px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateX(45px);
    visibility: hidden;
    transition: opacity .22s ease,transform .22s ease,visibility 0s linear .22s
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 2;
    transition: opacity .38s ease .22s,transform .38s ease .22s,visibility 0s
}

.testimonial-slide>div {
    color: var(--tan);
    font-size: 25px;
    letter-spacing: 3px
}

.testimonial-slide p {
    max-width: 620px;
    margin: 18px auto;
    font: italic 700 clamp(23px,3vw,34px)/1.3 Georgia,var(--serif)
}

.testimonial-slide cite {
    font: 600 12px/1 'Poppins',sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em
}

.slider-arrow {
    position: absolute;
    top: 115px;
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s,color .2s,transform .2s
}

.slider-arrow:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05)
}

.slider-prev {
    left: 8px
}

.slider-next {
    right: 8px
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%)
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6bdb4;
    cursor: pointer;
    transition: width .25s,background .25s
}

.slider-dots button.is-active {
    width: 28px;
    border-radius: 8px;
    background: var(--tan)
}

@media (max-width: 1050px) {
    .intro .order-band {
        grid-template-columns:190px 1fr 180px
    }

    .order-band>.order-action {
        grid-column: auto
    }

    .intro .benefit-strip {
        grid-template-columns: repeat(4,1fr)
    }
}

@media (max-width: 760px) {
    .intro .feature-grid {
        margin-inline:0;
        border-inline:1px solid var(--line);border-radius: 0
    }

    .intro .order-band {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 27px 22px!important;
        grid-template-columns: 1fr
    }

    .order-band>.order-action {
        grid-column: auto
    }

    .order-contact {
        width: 100%;
        padding-inline:0}

    .order-contact a,.order-contact span {
        justify-content: center;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word
    }

    .intro .benefit-strip {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        border-radius: 0 0 12px 12px;
        padding: 10px
    }

    .benefit-strip>div {
        justify-content: flex-start;
        padding: 13px 8px
    }

    .benefit-strip>div>img {
        max-width: 40px;
        max-height: 27px
    }

    .testimonial-slider {
        padding: 0 0 52px
    }

    .slider-track {
        min-height: 330px
    }

    .testimonial-slide {
        padding: 40px 42px
    }

    .testimonial-slide p {
        font-size: 24px
    }

    .slider-arrow {
        top: auto;
        bottom: 7px;
        width: 40px;
        height: 40px
    }

    .slider-prev {
        left: 16px
    }

    .slider-next {
        right: 16px
    }

    .slider-dots {
        bottom: 22px
    }

    .loader-holder {
        transform: scale(.9)
    }

    .loader-holder {
        animation: loader-float-mobile 1.25s ease-in-out infinite
    }

    @keyframes loader-float-mobile {
        50% {
            transform: scale(.9) translateY(-8px)
        }
    }
}

@media (max-width: 390px) {
    .benefit-strip>div {
        gap:8px
    }

    .benefit-strip b {
        font-size: 9px
    }

    .benefit-strip em {
        font-size: 8px
    }

    .testimonial-slide {
        padding: 34px 28px
    }

    .testimonial-slide p {
        font-size: 22px
    }
}

@media (prefers-reduced-motion:reduce) {
    .loader-holder,.loader-pocket,.loader-progress i {
        animation: none!important
    }

    .testimonial-slide {
        transition: none
    }
}

/* Final homepage reference alignment */
.site-header {
    height: 82px
}

.nav-shell {
    width: min(1360px,calc(100% - 56px))
}

.brand span {
    font-size: 30px
}

.brand small {
    font-size: 16px;
    margin-top: 5px
}

.site-nav a {
    padding: 31px 0 27px
}

.site-nav a:after {
    bottom: 20px
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-left: 2px
}

.header-tools a {
    position: relative;
    display: grid;
    place-items: center;
    width: 27px;
    height: 34px;
    transition: transform .2s
}

.header-tools a:hover {
    transform: translateY(-2px)
}

.header-tools img {
    width: auto;
    height: auto;
    max-width: 25px;
    max-height: 25px;
    object-fit: contain
}

.header-tools span {
    position: absolute;
    right: -9px;
    top: -3px;
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 17px;
    padding: 0 4px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font: 600 8px/1 'Poppins',sans-serif
}

.product-experience {
    width: min(1240px,calc(100% - 56px));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 44px;
    align-items: center;
    padding: 54px;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: #0b0b0b;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,.16)
}

.experience-copy h2 {
    font: 700 clamp(38px,4vw,59px)/1.04 Georgia,var(--serif);
    margin: 0 0 18px
}

.experience-copy>p:not(.eyebrow) {
    color: #d0cbc5;
    font-size: 15px
}

.experience-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0
}

.experience-price strong {
    font-size: 58px;
    line-height: 1;
    color: var(--gold)
}

.experience-price span {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5
}

.product-experience .btn-light {
    min-width: 235px
}

.experience-media {
    min-width: 0
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 14px 45px rgba(0,0,0,.35)
}

.video-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000
}

.video-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 20px;
    background: rgba(0,0,0,.72);
    font: 600 9px/1 'Poppins',sans-serif;
    letter-spacing: .11em;
    text-transform: uppercase;
    pointer-events: none
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
    margin-top: 9px
}

.experience-gallery img {
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .35s,filter .35s
}

.experience-gallery img:hover {
    transform: translateY(-4px);
    filter: brightness(1.08)
}

@media (min-width: 761px) {
    .testimonial-slider {
        width:min(1080px,100%);
        padding: 0 58px 52px
    }

    .slider-viewport {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none
    }

    .slider-track {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
        min-height: auto
    }

    .testimonial-slide {
        position: relative;
        inset: auto;
        min-height: 255px;
        padding: 30px 22px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: #fff;
        transition: transform .35s ease,border-color .35s ease,box-shadow .35s ease
    }

    .testimonial-slide.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(-9px);
        border-color: #d5a066;
        box-shadow: 0 18px 42px rgba(42,28,15,.13);
        transition: transform .35s ease,border-color .35s ease,box-shadow .35s ease
    }

    .testimonial-slide>div {
        font-size: 20px
    }

    .testimonial-slide p {
        font-size: 19px;
        line-height: 1.35;
        margin: 15px auto
    }

    .slider-arrow {
        top: 103px
    }

    .slider-prev {
        left: 0
    }

    .slider-next {
        right: 0
    }
}

@media (max-width: 1050px) {
    .site-header {
        height:80px
    }

    .brand span {
        font-size: 27px
    }

    .site-nav a {
        padding: 30px 0 26px
    }

    .header-tools {
        gap: 13px
    }

    .product-experience {
        grid-template-columns: 1fr 1.25fr;
        padding: 38px;
        gap: 30px
    }
}

@media (max-width: 760px) {
    .site-header {
        height:76px
    }

    .brand span {
        font-size: 23px
    }

    .brand small {
        font-size: 8.5px
    }

    .header-tools {
        display: none
    }

    .site-nav {
        inset: 76px 0 0
    }

    .product-experience {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        padding: 28px 18px;
        margin: 22px auto;
        border-radius: 15px;
        gap: 27px
    }

    .experience-copy {
        text-align: center
    }

    .experience-copy h2 {
        font-size: 38px
    }

    .experience-copy>p:not(.eyebrow) {
        font-size: 14px
    }

    .experience-price {
        justify-content: center
    }

    .product-experience .btn-light {
        width: 100%
    }

    .experience-media {
        grid-row: 1
    }

    .experience-gallery img {
        height: 85px
    }

    .slider-viewport {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: linear-gradient(145deg,#fff,#f8f4ef);
        box-shadow: 0 22px 60px rgba(20,15,10,.09)
    }

    .slider-track {
        position: relative;
        display: block;
        min-height: 330px
    }

    .testimonial-slide {
        position: absolute;
        inset: 0;
        min-height: 0;
        margin: 0;
        padding: 40px 42px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(45px);
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transition: opacity .22s ease,transform .22s ease,visibility 0s linear .22s
    }

    .testimonial-slide.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        border: 0;
        box-shadow: none;
        transition: opacity .38s ease .22s,transform .38s ease .22s,visibility 0s
    }

    .testimonial-slide>div {
        font-size: 24px
    }

    .testimonial-slide p {
        font-size: 24px
    }
}

/* Keep these final mobile fixes after every legacy breakpoint override. */
@media (max-width: 760px) {
    .site-nav {
        inset:76px 0 0;
        height: calc(100dvh - 76px);
        padding: 24px 24px max(28px,env(safe-area-inset-bottom));
        background: #fff!important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(100%,0,0)
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0,0,0)
    }

    .site-nav a {
        padding: 19px 4px 18px;
        font: 600 21px/1.25 'Poppins',Arial,sans-serif;
        letter-spacing: .02em;
        text-transform: uppercase
    }

    .video-shell {
        background: #000
    }

    .video-shell video {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        object-fit: contain;
        object-position: center;
        background: transparent
    }
}

/* Uncropped portrait demonstration and calmer conversion typography. */
.product-experience {
    grid-template-columns: minmax(300px,390px) minmax(0,1fr);
    padding: 38px 46px;
    gap: 38px
}

.experience-copy h2 {
    font-size: clamp(32px,3.1vw,42px);
    line-height: 1.04;
    letter-spacing: -.025em
}

.experience-copy>p:not(.eyebrow) {
    max-width: 380px;
    font-size: 14px;
    line-height: 1.55
}

.experience-price {
    margin: 21px 0
}

.experience-price strong {
    font-size: 46px
}

.experience-media {
    display: grid;
    grid-template-columns: minmax(190px,220px) minmax(180px,1fr);
    gap: 12px;
    align-items: stretch;
    justify-content: end;
    height: 391px
}

.video-shell {
    width: 100%;
    max-width: 220px;
    height: 391px;
    margin: 0 auto;
    background: #000
}

.video-shell video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: contain;
    object-position: center;
    background: #000
}

.experience-gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin: 0;
    min-height: 0
}

.experience-gallery img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 6px;
    object-fit: contain;
    background: #0b0b0b;
    /* border: 1px solid rgba(255,255,255,.12); */
}

.experience-gallery img:first-child {
    grid-column: 1/-1
}

@media (max-width: 1050px) and (min-width:761px) {
    .product-experience {
        grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);
        padding: 34px;
        gap: 28px
    }

    .experience-media {
        grid-template-columns: minmax(180px,210px) minmax(125px,1fr)
    }

    .experience-media,.video-shell {
        height: 373px
    }

    .video-shell {
        max-width: 210px
    }

    .experience-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3,1fr)
    }

    .experience-gallery img:first-child {
        grid-column: auto
    }
}

@media (max-width: 760px) {
    .product-experience {
        grid-template-columns:1fr;
        padding: 24px 18px;
        gap: 22px
    }

    .experience-media {
        display: block;
        grid-row: 1;
        height: auto
    }

    .video-shell {
        width: min(100%,315px);
        max-width: none;
        height: auto;
        margin-inline:auto}

    .video-shell video {
        aspect-ratio: 9/16;
        object-fit: contain
    }

    .experience-gallery {
        grid-template-columns: repeat(3,1fr);
        gap: 8px;
        margin-top: 9px
    }

    .experience-gallery img {
        height: 82px;
        padding: 4px
    }

    .experience-gallery img:first-child {
        grid-column: auto
    }

    .experience-copy h2 {
        font-size: 31px;
        line-height: 1.08
    }

    .experience-copy>p:not(.eyebrow) {
        max-width: 340px;
        margin-inline:auto;font-size: 13px;
        line-height: 1.5
    }

    .experience-price {
        margin: 18px 0
    }

    .experience-price strong {
        font-size: 46px
    }
}

/* PSD price lockup */
.price-block {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-areas: 'label label' 'price shipping';
    align-items: center;
    justify-content: start;
    column-gap: 7px;
    row-gap: 2px
}

.price-block>span {
    grid-area: label;
    font: 700 16px/1.15 'Poppins',Arial,sans-serif;
    letter-spacing: 0;
    text-transform: uppercase
}

.price-block strong {
    grid-area: price;
    display: flex;
    align-items: flex-start;
    font: 700 78px/.82 'Poppins',Arial,sans-serif;
    letter-spacing: -.065em
}

.price-block sup {
    position: relative;
    top: 7px;
    margin-right: 3px;
    font: 700 31px/1 'Poppins',Arial,sans-serif;
    letter-spacing: -.03em
}

.price-block small {
    grid-area: shipping;
    max-width: 92px;
    align-self: center;
    color: var(--tan);
    font: 700 11px/1.35 'Poppins',Arial,sans-serif;
    text-transform: uppercase
}

/* First-visit product offer */
body.popup-open {
    overflow: hidden
}

.purchase-popup[hidden] {
    display: none
}

.purchase-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease,visibility 0s linear .28s
}

.purchase-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity .28s ease
}

.purchase-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(7px)
}

.purchase-popup-card {
    position: relative;
    width: min(880px,100%);
    max-height: calc(100dvh - 48px);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 34px 100px rgba(0,0,0,.4);
    transform: translateY(24px) scale(.975);
    transition: transform .38s cubic-bezier(.22,1,.36,1)
}

.purchase-popup.is-visible .purchase-popup-card {
    transform: none
}

.purchase-popup-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #000;
    box-shadow: 0 7px 25px rgba(0,0,0,.16);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s,background .2s
}

.purchase-popup-close:hover {
    transform: rotate(8deg) scale(1.06);
    background: var(--yellow)
}

.purchase-popup-media {
    min-height: 485px;
    background: #eee
}

.purchase-popup-media img {
    height: 100%;
    object-fit: cover
}

.purchase-popup-copy {
    padding: 48px 44px 38px;
    align-self: center
}

.purchase-popup-copy h2 {
    margin: 0 0 15px;
    font: 700 38px/1.04 Georgia,var(--serif);
    letter-spacing: -.03em
}

.purchase-popup-copy>p:not(.eyebrow) {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.55
}

.purchase-popup-copy ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 600
}

.purchase-popup-copy li::before {
    content: '✓';
    margin-right: 9px;
    color: var(--tan);
    font-weight: 900
}

.purchase-popup-action {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px
}

.purchase-popup-action>strong {
    font: 700 46px/1 'Poppins',Arial,sans-serif;
    color: var(--tan)
}

.purchase-popup-action .btn {
    flex: 1
}

.purchase-popup-link {
    display: inline-block;
    margin-top: 18px;
    border-bottom: 1px solid #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.cart-toast {
    position: fixed;
    z-index: 9100;
    right: 24px;
    bottom: 24px;
    width: min(340px,calc(100% - 32px));
    padding: 16px 18px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .25s,transform .25s
}

.cart-toast.is-visible {
    opacity: 1;
    transform: none
}

.cart-toast strong,.cart-toast span {
    display: block
}

.cart-toast strong {
    font-size: 14px
}

.cart-toast span {
    margin-top: 3px;
    color: #d9d4ce;
    font-size: 11px
}

.btn.is-added {
    background: var(--tan);
    border-color: var(--tan);
    color: #fff
}

/* Final mobile rhythm and readable type scale */
@media (max-width: 760px) {
    .section {
        width:calc(100% - 28px);
        padding: 44px 0
    }

    .header-tools {
        display: flex;
        order: 2;
        margin: 0 2px 0 auto;
        gap: 0
    }

    .header-tools a:not(.header-cart) {
        display: none
    }

    .header-tools .header-cart {
        display: grid;
        width: 34px;
        height: 40px
    }

    .header-tools .header-cart img {
        max-width: 23px;
        max-height: 23px
    }

    .header-tools .header-cart span {
        right: -2px;
        top: 0;
        min-width: 18px;
        height: 16px;
        font-size: 8px
    }

    .menu-toggle {
        order: 3
    }

    .intro {
        padding-top: 38px
    }

    .intro .section-heading {
        margin-bottom: 28px
    }

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.08
    }

    .section-heading span {
        font-size: 15px
    }

    .section-heading p {
        font-size: 14px
    }

    .feature-grid article {
        padding: 22px 12px
    }

    .feature-grid h3 {
        font-size: 13px
    }

    .feature-grid p {
        font-size: 11px
    }

    .intro .order-band {
        padding: 24px 18px!important
    }

    .price-block {
        justify-content: center;
        text-align: left
    }

    .price-block>span {
        font-size: 14px
    }

    .price-block strong {
        font-size: 68px
    }

    .price-block sup {
        font-size: 27px
    }

    .price-block small {
        font-size: 10px
    }

    .benefit-strip {
        margin-bottom: 34px
    }

    .product-experience {
        margin-block:14px;padding: 22px 16px
    }

    .experience-copy h2 {
        font-size: 29px
    }

    .experience-copy>p:not(.eyebrow) {
        font-size: 13px
    }

    .reviews {
        padding-top: 38px;
        padding-bottom: 42px
    }

    .reviews .section-heading {
        margin-bottom: 30px
    }

    .reviews .section-heading h2 {
        font-size: 30px
    }

    .page-hero,.page-hero.compact {
        min-height: 290px;
        padding: 46px 18px
    }

    .page-hero h1 {
        font-size: 40px
    }

    .page-hero p:not(.eyebrow) {
        font-size: 15px
    }

    .product-detail {
        gap: 28px
    }

    .product-info h2 {
        font-size: 34px
    }

    .product-info>p {
        font-size: 15px
    }

    .check-list {
        margin: 18px 0
    }

    .check-list li {
        padding-block:6px}

    .split-feature {
        padding: 30px 18px;
        margin-bottom: 48px
    }

    .split-feature h2,.story h2,.cta h2 {
        font-size: 33px
    }

    .form-card {
        padding: 24px 18px
    }

    .form-card>h2 {
        font-size: 31px
    }

    .order-form {
        gap: 14px;
        margin-top: 20px
    }

    .site-footer {
        padding-top: 28px
    }

    .footer-grid {
        gap: 22px
    }

    .purchase-popup {
        padding: 12px;
        align-items: center
    }

    .purchase-popup-card {
        width: 100%;
        max-height: calc(100dvh - 24px);
        grid-template-columns: 1fr;
        overflow-y: auto;
        border-radius: 18px
    }

    .purchase-popup-media {
        min-height: 0;
        height: 190px
    }

    .purchase-popup-media img {
        object-position: center 54%
    }

    .purchase-popup-copy {
        padding: 25px 22px 24px
    }

    .purchase-popup-copy .eyebrow {
        font-size: 10px;
        margin-bottom: 8px
    }

    .purchase-popup-copy h2 {
        max-width: 300px;
        font-size: 27px;
        line-height: 1.05;
        margin-bottom: 11px
    }

    .purchase-popup-copy>p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.45
    }

    .purchase-popup-copy ul {
        gap: 5px;
        margin: 14px 0;
        font-size: 12px
    }

    .purchase-popup-action {
        margin-top: 16px;
        gap: 12px
    }

    .purchase-popup-action>strong {
        font-size: 38px
    }

    .purchase-popup-action .btn {
        min-height: 48px;
        padding-inline:14px}

    .purchase-popup-link {
        margin-top: 14px;
        font-size: 10px
    }

    .cart-toast {
        right: 16px;
        bottom: 82px
    }
}
p.eyebrow.yllew {
    border-radius: 90px;
    background: var(--yellow);
    color: #000;
}
/* Portable system typography and client branding. */
:root {--serif: "Times New Roman", Times, serif;--sans: "Times New Roman", Times, serif;--brand-red: #FF0000;}
body, body * { font-family: "Times New Roman", Times, serif !important; }
.brand small { color: var(--brand-red); font-style: italic; }
.site-header .brand { gap: 3px; min-width: 0; }
.brand-office { color: var(--brand-red); font-size: 21px; line-height: 1; }
.site-header .brand span { font-size: 27px; font-weight: 700; }
.site-header .brand small { font-size: 14px; margin-top: 0; }
.hero h1, .hero .script-line { font-size: clamp(58px,7vw,94px); font-style: italic; font-weight: 700; line-height: .96; letter-spacing: -.045em; }
.hero .script-line { color: var(--brand-red); max-width: 620px; }
@media (max-width: 1050px) { .site-header .brand span { font-size: 23px; } }
@media (max-width: 760px) {
  .site-header .brand span { font-size: clamp(17px,4.8vw,23px); }
  .brand-office { font-size: 17px; }
  .site-header .brand small { font-size: clamp(10px,2.8vw,13px); }
  .hero h1, .hero .script-line { font-size: clamp(40px,10.5vw,52px); line-height: 1; }
}@media (max-width: 760px) { .site-header .brand span { font-size: clamp(13px,4vw,20px); } .site-header .brand small { font-size: clamp(9px,2.5vw,12px); } }

/* Keep the complete banner reply on one line at laptop widths. */
@media (min-width: 761px) {
  .site-header { height: 88px; }
  .nav-shell { gap: clamp(16px,2vw,28px); }
  .site-header .brand { flex-shrink: 0; gap: 4px; }
  .site-header .brand span { font-size: clamp(21px,2vw,27px); line-height: 1.05; }
  .site-header .brand-office { font-size: 18px; }
  .site-header .brand small { font-size: 12px; line-height: 1.1; }
  .site-nav { gap: clamp(16px,2.3vw,32px); flex-shrink: 0; }
  .header-tools { flex-shrink: 0; gap: 14px; }
  .hero { min-height: 620px; }
  .hero-content { padding-block: 54px; }
  .hero h1, .hero .script-line {font-size: clamp(43px,5.7vw,102px);line-height: 1.02;}
  .hero .script-line {white-space: nowrap;max-width: none;margin-block: 14px 20px;font-size: 80px;}
  .hero-copy { max-width: 46%; }
}
@media (min-width: 761px) and (max-width: 1000px) {
  .nav-shell { width: calc(100% - 36px); gap: 16px; }
  .site-header .brand span { font-size: 20px; }
  .site-header .brand small { font-size: 11px; }
  .site-nav { gap: 16px; }
  .header-tools { gap: 8px; }
  .header-tools a { width: 22px; }
  .hero-kicker { font-size: 15px; }
}


/* One-line brand names with a separate tagline. */
.site-header .brand {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 5px;
}
.site-header .brand .brand-office,
.site-header .brand > span {
  font-size: clamp(23px,2.65vw,31px);
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
}
.site-header .brand .brand-office {
  padding-right: 12px;
  border-right: 1px solid #d9c9c9;
  color: #000;
}
.site-header .brand > small {
  grid-column: 1 / -1;
  font-size: 22px;
  margin: 0;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .nav-shell { gap: 16px; }
  .site-nav { gap: 15px; }
  .header-tools a:not(.header-cart) { display: none; }
  .site-header .brand .brand-office,
  .site-header .brand > span { font-size: clamp(15px,1.7vw,19px); }
}
@media (max-width: 760px) {
  .site-header .nav-shell { width: calc(100% - 24px); gap: 8px; }
  .site-header .brand { column-gap: 5px; row-gap: 4px; }
  .site-header .brand .brand-office,
  .site-header .brand > span { font-size: clamp(10px,2.9vw,19px); }
  .site-header .brand .brand-office { padding-right: 5px; }
  .site-header .brand > small { font-size: clamp(9px,2.4vw,12px); }
  .site-header .menu-toggle { flex-shrink: 0; width: 34px; }
}


/* New  photography: preserve the complete product composition. */
.psd-product-board { max-width: 760px; margin-inline: auto; }
.psd-product-board img { aspect-ratio: 1; height: auto; object-fit: contain; }
.story-image img { object-fit: contain; min-height: 0; }

[hidden] { display: none !important; }
.cart-panel { padding-block: 28px; }
.cart-controls { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
/* Order page */
.checkout-page { background: #f6f3ef; padding: 36px 24px 64px; color: #26221e; }
.checkout-heading { max-width: 1160px; margin: 0 auto 28px; }
.checkout-heading > a { font-size: 14px; color: #655d55; text-decoration: none; }
.checkout-heading .eyebrow { margin: 26px 0 10px; color: #8c4930; font-size: 12px; letter-spacing: .15em; }
.checkout-heading h1 { font-size: clamp(34px,4vw,48px); line-height: 1.1; margin: 0 0 12px; }
.checkout-heading > p:last-child { color: #6f665e; font-size: 17px; margin: 0; line-height: 1.6; }
.checkout-grid { max-width: 1160px; margin: auto; display: grid; grid-template-columns: 400px minmax(0,1fr); align-items: start; gap: 28px; }
.checkout-summary { background: #fff; border: 1px solid #e4dcd4; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px #35220e06; }
.checkout-summary-title { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.checkout-summary-title h2 { font-size: 21px; margin: 0; }
.checkout-summary-title > span { font-size: 11px; border-radius: 20px; background: #edf3eb; color: #365b39; padding: 7px 10px; }
.checkout-photo { display: block; width: 100%; height: 245px; object-fit: contain; background: #f4e9dc; }
.checkout-product { padding: 23px 24px 17px; }
.checkout-product .eyebrow { font-size: 11px; color: #8c4930; margin: 0 0 8px; }
.checkout-product h3 { font-size: 23px; margin: 0 0 9px; }
.checkout-product p:not(.eyebrow) { font-size: 14px; color: #776b60; margin: 0 0 14px; }
.checkout-product > strong { font-size: 24px; }
.checkout-product small { font-size: 14px; color: #776b60; font-weight: 400; }
.checkout-quantity { margin: 0 24px; padding: 17px 0; border-block: 1px solid #ece5de; display: flex; align-items: center; gap: 16px; }
.checkout-quantity > span { margin-right: auto; font-size: 15px; }
.checkout-quantity .cart-controls { display: flex; gap: 0; border: 1px solid #ded5cc; border-radius: 8px; overflow: hidden; }
.checkout-quantity .cart-controls button { width: 36px; height: 38px; border: 0; background: #f8f6f3; font-size: 20px; cursor: pointer; color: #30261f; }
.checkout-quantity .cart-controls strong { min-width: 34px; text-align: center; align-self: center; font-size: 15px; }
.checkout-remove { border: 0; background: none; color: #876f5d; font-size: 13px; text-decoration: underline; cursor: pointer; padding: 8px 0; }
.checkout-shipping, .checkout-total { display: flex; justify-content: space-between; align-items: center; margin: 0 24px; padding-top: 18px; }
.checkout-shipping { font-size: 15px; color: #6c6259; }
.checkout-shipping strong { color: #365b39; font-size: 14px; }
.checkout-total { font-size: 19px; font-weight: 700; }
.checkout-total strong { font-size: 30px; }
.checkout-footnote { margin: 16px 24px 23px; font-size: 13px; color: #776b60; line-height: 1.6; }
.checkout-help { display: grid; gap: 5px; background: #faf8f5; border-top: 1px solid #ece5de; padding: 18px 24px; font-size: 14px; }
.checkout-help span { color: #776b60; }
.checkout-help a { color: #35281e; text-decoration: none; }
.checkout-empty { padding: 4px 24px 24px; }
.checkout-empty h3 { font-size: 21px; margin: 12px 0 8px; }
.checkout-empty p { color: #776b60; font-size: 15px; }
.checkout-page .order-layout { display: block; margin: 0; padding: 0; width: auto; }
.checkout-details .form-card { border-radius: 18px; padding: 30px; box-shadow: 0 8px 30px #35220e06; border-color: #e4dcd4; }
.checkout-details .form-card > .eyebrow { color: #8c4930; font-size: 11px; letter-spacing: .15em; margin: 0 0 10px; }
.checkout-details .form-card > h2 { font-size: 30px; margin: 0 0 10px; }
.checkout-details .form-card > p { font-size: 15px; line-height: 1.6; }
.checkout-details .order-form { gap: 18px; margin-top: 24px; }
.checkout-details .order-form label { font-size: 14px; text-transform: none; letter-spacing: 0; line-height: 1.5; }
.checkout-details .order-form input:not([type=checkbox]), .checkout-details .order-form textarea { border: 1px solid #ddd4ca; background: #fcfbf9; border-radius: 8px; font-size: 16px; padding: 12px 14px; margin-top: 7px; width: 100%; }
.checkout-details .order-form input:focus, .checkout-details .order-form textarea:focus { border-color: #945638; outline: 3px solid #94563818; }
.checkout-details .order-form .consent { align-items: start; color: #6b6056; font-weight: 400; font-size: 14px; }
.checkout-details .order-form .form-note { font-size: 12px; line-height: 1.6; color: #776b60; margin: 0; text-align: center; }
.checkout-page .btn-dark { background: #30241c; color: #fff; border: 1px solid #30241c; border-radius: 9px; min-height: 48px; font-size: 14px; text-transform: none; letter-spacing: .02em; }
.checkout-page .btn-dark:hover { background: #754329; border-color: #754329; }
.checkout-next { display: flex; gap: 15px; padding: 22px 10px 0; }
.checkout-next > span { background: #e9dfd3; color: #755c47; border-radius: 50%; min-width: 36px; height: 36px; display: grid; place-items: center; font-size: 13px; }
.checkout-next strong { font-size: 16px; }
.checkout-next p { font-size: 14px; line-height: 1.6; color: #776b60; margin: 6px 0 0; }
.checkout-error { background: #fff0ed; padding: 12px; border-radius: 8px; color: #9b3327 !important; }
body:has(.checkout-page) .mobile-buy { display: none; }
@media(max-width: 960px) { .checkout-grid { grid-template-columns: 340px minmax(0,1fr); gap: 20px; } .checkout-details .form-card { padding: 24px; } .checkout-details .field-row { grid-template-columns: 1fr; } }
@media(max-width: 760px) { .checkout-page { padding: 24px 16px 40px; } .checkout-grid { grid-template-columns: 1fr; gap: 22px; } .checkout-heading { margin-bottom: 24px; } .checkout-heading .eyebrow { margin-top: 20px; } .checkout-photo { height: 220px; } .checkout-details .form-card { padding: 22px; } .checkout-summary-title { padding: 20px 22px; } }
.checkout-details .order-form label > span { display: inline; }
.checkout-grid:has(.checkout-details[hidden]) { grid-template-columns: minmax(0,540px); justify-content: center; }
.checkout-quantity .cart-controls button:hover { background: #e9dfd3; }
.checkout-page button:focus-visible, .checkout-page a:focus-visible { outline: 3px solid #945638; outline-offset: 3px; }

/* Fit the original 3870 x 1560 banner without zooming or stretching. */
.hero-media { transform: none; animation: none; }
@media (min-width: 761px) {
  .hero { min-height: clamp(560px, 40.31vw, 780px); }
  .hero-media { background-size: auto 100%; background-position: right center; }
  .hero-content { padding-block: 42px; }
  .hero .script-line { font-size: clamp(44px, 5.3vw, 80px); }
}
@media (max-width: 760px) {
  .hero { min-height: 0; }
  .hero-media { height: clamp(250px, 65vw, 390px); background-size: auto 100%; background-position: right top; }
  .hero-media::after { background: linear-gradient(to bottom, transparent 78%, #fff 100%); }
  .hero-content { min-height: 0; padding-top: clamp(250px, 65vw, 390px); }
}
/* Patent icon sourced from SVG Repo (CC0): /svg/288365/certificate-patent */
.footer-bottom { align-items: center; gap: 16px; }
.footer-patent-logo { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; }
.footer-patent-logo img { display: block; width: 52px; height: 52px; object-fit: contain; }
@media (max-width: 760px) {
  .footer-bottom { align-items: flex-start; gap: 12px; }
  .footer-patent-logo img { width: 44px; height: 44px; }
}
/* Keep the banner video action visible at every screen size. */
.hero-actions .hero-video-button { display: inline-flex; gap: 8px; }

/* A warm leather-inspired cinema, with the product kept fully in frame. */
body.video-dialog-open { overflow: hidden; }
.hero-actions .hero-video-button { background: #422b20; border-color: #422b20; color: #fff8ef; }
.hero-video-button > span { display: inline-grid; place-items: center; width: 26px; height: 26px; border: 1px solid #d8b28a; border-radius: 50%; font-size: 10px; }
.hero-actions .hero-video-button:hover { background: #65442e; border-color: #65442e; }
.product-video-dialog { width: min(960px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 32px); margin: auto; padding: 0; border: 1px solid #997250; border-radius: 22px; background: #1e1916; color: #fff5e9; box-shadow: 0 32px 100px #0009; overflow: auto; }
.product-video-dialog::backdrop { background: rgb(15 11 8 / 82%); backdrop-filter: blur(9px); }
.product-video-dialog[open] { animation: video-dialog-enter .25s ease-out; }
.video-dialog-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 28px; background: radial-gradient(ellipse at top left, #513828, transparent 75%); }
.video-dialog-kicker { color: #d7ad7d; font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.video-dialog-header h2 { margin: 6px 0 0; font-size: clamp(20px, 3vw, 30px); line-height: 1.2; color: #fff5e9; }
.video-dialog-close { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 14px; flex-shrink: 0; border: 1px solid #ffffff40; border-radius: 30px; background: #ffffff0d; color: #fff5e9; cursor: pointer; }
.video-dialog-close > span:first-child { font-size: 25px; line-height: 1; }
.video-dialog-stage { background: #090807; padding: 0; }
.video-dialog-stage video { display: block; width: 100%; height: min(56vw, 58dvh); object-fit: contain; background: #090807; }
.video-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 28px; }
.video-dialog-footer p { margin: 0; color: #cfbba7; font-size: 13px; }
.video-live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: #d7ad7d; }
.video-dialog-footer button { min-height: 44px; border: 0; background: transparent; color: #ebc99f; cursor: pointer; font: inherit; font-size: 13px; }
.product-video-dialog button:hover { color: #fff; background: #ffffff12; }
.product-video-dialog :focus-visible { outline: 2px solid #edc08e; outline-offset: 4px; }
.video-dialog-error { padding: 0 28px 18px; color: #f3cfaf; }
.video-dialog-error a { text-decoration: underline; }
@keyframes video-dialog-enter { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
  .video-dialog-header { padding: 18px 16px; }
  .video-dialog-kicker { font-size: 9px; letter-spacing: .12em; }
  .video-dialog-close { padding: 0 10px; }
  .video-dialog-footer { padding: 12px 16px; flex-direction: column; gap: 4px; align-items: flex-start; }
  .video-dialog-stage video { height: min(65dvh, 90vw); }
}
@media (prefers-reduced-motion: reduce) { .product-video-dialog[open] { animation: none; } }

/* Unified red brand theme: replace the previous brown UI accents. */
:root {
  --tan: #e00000;
  --gold: #b40000;
  --brand-red: #e00000;
  --red-dark: #980000;
  --red-soft: #fff0f0;
}
.page-hero { background-color: #f7dede; }
.about-hero { background-color: #590000; }
.cta { background: linear-gradient(135deg,#fffafa,#ffe8e8); }
.checkout-page { background: #fff7f7; color: #241f1f; }
.checkout-heading .eyebrow,
.checkout-product .eyebrow,
.checkout-details .form-card > .eyebrow { color: var(--brand-red); }
.checkout-photo { background: var(--red-soft); }
.checkout-remove { color: #bd0000; }
.checkout-details .order-form input:focus,
.checkout-details .order-form textarea:focus {
  border-color: var(--brand-red);
  outline-color: rgba(224,0,0,.13);
}
.checkout-page .btn-dark,
.hero-actions .hero-video-button {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.checkout-page .btn-dark:hover,
.hero-actions .hero-video-button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.checkout-next > span {
  background: var(--red-soft);
  color: var(--brand-red);
}
.checkout-page button:focus-visible,
.checkout-page a:focus-visible { outline-color: var(--brand-red); }
.product-video-dialog {
  border-color: #d20000;
  background: #180303;
  color: #fff5f5;
}
.product-video-dialog::backdrop { background: rgb(24 0 0 / 84%); }
.video-dialog-header { background: radial-gradient(ellipse at top left,#7a0000,transparent 75%); }
.video-dialog-kicker { color: #ff7070; }
.video-live-dot { background-color: #ff7070; }
.video-dialog-footer p { color: #e7bcbc; }
.video-dialog-footer button { color: #ffb0b0; }
.product-video-dialog :focus-visible { outline-color: #ff5b5b; }
.video-dialog-error { color: #ffc2c2; }
