        /* ============================================================
           H2n Clothing — single-page site (replicates PDF UI design)
           Palette sampled directly from the source PDF.
           ============================================================ */
        :root {
            --navy-900: #f8f9fa;
            --navy-800: #ffffff;
            --navy-700: #f0f2f5;
            --navy-600: #e8ecf0;
            --navy-glow: #dce3ea;

            --brand: #0e82c4;
            --brand-bright: #1a8fd4;
            --card: #ffffff;
            --card-hi: #ffffff;

            --green: #43a55f;
            --green-bright: #3b9c55;
            --teal: #2f9e8c;

            --white: #1a1a2e;
            --cream: #f4efe6;
            --muted: #5a6a7e;
            --muted-dim: #8a95a5;

            --pill: rgba(255, 255, 255, 0.88);
            --pill-border: rgba(0, 0, 0, 0.08);

            --font-display: 'Baloo 2', system-ui, sans-serif;
            --font-body: 'Poppins', system-ui, sans-serif;
            --font-script: 'Caveat', cursive;

            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --maxw: 1180px;
        }

        .instagram-bg-modern {
            color: white;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: auto;
        }

        /* custom JS easing handles anchor scrolls */

        body {
            font-family: var(--font-body);
            color: var(--white);
            background: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Fixed atmospheric background: clean white */
        .bg {
            position: fixed;
            inset: 0;
            z-index: -2;
            background: transparent;
            background-image: url('images/res/bg.webp');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

        /* Starfield removed — hidden */
        .stars {
            display: none;
        }

        .star {
            display: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* ===================== NAVIGATION ===================== */
        .navbar {
            position: fixed;
            top: 18px;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            justify-content: center;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(-24px);
            animation: navDrop 0.9s var(--ease) 0.15s forwards;
        }

        @keyframes navDrop {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-pill {
            position: relative;
            width: 100%;
            max-width: var(--maxw);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px 10px 16px;
            border-radius: 44px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
        }

        /* Brand wordmark (left) */
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-right: 6px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 48px;
            height: auto;
            flex-shrink: 0;
            filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .35));
        }

        .brand-wordmark {
            height: clamp(50px, 3.4vw, 40px);
            width: auto;
            flex-shrink: 0;
            display: block;
            filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .35));
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .brand-name {
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .brand-name .script {
            font-family: var(--font-script);
            font-size: 1.55rem;
            font-weight: 700;
            color: #1a1a2e;
        }

        .brand-name .word {
            font-family: var(--font-body);
            font-size: 0.86rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--green-bright);
        }

        .brand-tag {
            font-size: 0.56rem;
            font-weight: 600;
            letter-spacing: 2.6px;
            color: var(--green-bright);
            margin-top: 3px;
        }

        /* Menu */
        .nav-menu {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(14px, 2.4vw, 34px);
        }

        .nav-logo-slot {
            width: 60px;
            flex-shrink: 0;
        }

        .nav-link {
            position: relative;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1.4px;
            color: #1a1a2e;
            white-space: nowrap;
            padding: 6px 2px;
            transition: color .25s;
        }

        /* Menu items are intentionally disabled for now.
           TO ENABLE LATER: remove `is-disabled` from the <a> tags,
           give each an href, and delete the `.nav-link.is-disabled` rule. */
        .nav-link.is-disabled {
            color: var(--muted-dim);
            opacity: 0.72;
            cursor: default;
            pointer-events: none;
        }

        .nav-link:not(.is-disabled)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--brand), var(--green));
            transition: width .3s var(--ease);
        }

        .nav-link:not(.is-disabled):hover {
            color: var(--brand);
        }

        .nav-link:not(.is-disabled):hover::after {
            width: 100%;
        }

        /* Thread + sewing-machine decoration (right) — the brand signature */
        .thread {
            flex-shrink: 0;
            width: 250px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .thread img {
            width: 100%;
            filter: drop-shadow(0 0 5px rgba(190, 225, 255, 0.55));
            /* "sews" itself in left-to-right on load */
            clip-path: inset(0 100% 0 0);
            animation: sew 2.1s var(--ease) 0.9s forwards;
        }

        @keyframes sew {
            to {
                clip-path: inset(0 0 0 0);
            }
        }

        /* Floating centre logo that dips below the pill */
        .center-logo {
            position: absolute;
            left: 0;
            right: 0;
            margin-inline: auto;
            /* robust horizontal centering */
            top: 50%;
            width: 96px;
            opacity: 0;
            transform: translateY(-50%) scale(0.4);
            animation: logoPop 0.9s var(--ease) 0.55s forwards;
            z-index: 3;
        }

        .center-logo img {
            width: 100%;
            filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
            animation: bob 5s ease-in-out 1.6s infinite;
        }

        @keyframes logoPop {
            to {
                opacity: 1;
                transform: translateY(30%) scale(1);
            }
        }

        @keyframes bob {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-7px) rotate(-1.5deg);
            }
        }

        .hamburger {
            display: none;
        }

        /* ===================== HERO ===================== */
        .hero {
            position: relative;
            padding: 190px 20px 90px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Entrance on the wrapper, perpetual float on the image — separate
           elements so the two transforms never fight each other. */
        .hero-boys-wrap {
            width: 100%;
            margin-bottom: -6px;
            opacity: 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 0;
            transform: translateY(46px) scale(0.96);
            animation: rise 1.1s var(--ease) 0.7s forwards;
        }

        .hero-boys {
            flex: 1 1 0;
            min-width: 0;
            max-height: 55vh;
            object-fit: contain;
            padding: 30px 0;
            /* filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2)); */
            /* animation: floatBoys 5.5s ease-in-out 1.9s infinite; */
            will-change: transform, filter;
        }

        @keyframes rise {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes floatBoys {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
                filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
            }

            50% {
                transform: translateY(-16px) rotate(-1.2deg);
                filter: drop-shadow(0 46px 60px rgba(0, 0, 0, 0.42));
            }
        }

        .hero-title {
            font-family: var(--font-display);
            line-height: 0.95;
            margin-top: 6px;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line>span {
            display: inline-block;
            transform: translateY(110%);
            animation: reveal 0.95s var(--ease) forwards;
        }

        .hero-title .line.one>span {
            animation-delay: 1.0s;
        }

        .hero-title .line.two>span {
            animation-delay: 1.18s;
        }

        @keyframes reveal {
            to {
                transform: translateY(0);
            }
        }

        .line.one>span {
            font-size: clamp(2.8rem, 8.5vw, 6rem);
            font-weight: 800;
            color: #1a1a2e;
            letter-spacing: -1px;
        }

        .line.two>span {
            font-size: clamp(3rem, 9.5vw, 6.6rem);
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(96deg, var(--brand-bright) 8%, var(--teal) 55%, var(--green-bright) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            padding: 0 6px 8px;
        }

        /* ===================== USP MARQUEE ===================== */
        .usp-marquee {
            width: 100%;
            overflow: hidden;
            background: rgba(255, 255, 255, .78);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .4);
            /* background: linear-gradient(180deg, #f5f0e6 0%, #ede8dc 100%); */
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 16px 0;
        }

        .usp-marquee-inner {
            display: inline-flex;
            width: max-content;
            animation: uspScroll 22s linear infinite !important;
            /* !important forces it past overrides */
        }

        .usp-track {
            display: flex;
            flex-shrink: 0;
            gap: 3rem;
            padding-right: 3rem;
        }

        .usp-item {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            white-space: nowrap;
            color: #333;
            /* Temporary hardcoded color to test */
        }

        @keyframes uspScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ===================== COLLECTIONS ===================== */
        .collections {
            padding: 40px 20px 40px;
            max-width: var(--maxw);
            margin: 0 auto;
            scroll-margin-top: 118px;
        }

        .col-head {
            text-align: center;
            margin-bottom: 54px;
        }

        .eyebrow {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 5px;
            background: linear-gradient(90deg, var(--teal), var(--green-bright));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: 10px;
        }

        .col-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2.6rem, 7vw, 4.8rem);
            letter-spacing: -1px;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .col-title .rocket {
            display: inline-block;
            animation: launch 3s ease-in-out infinite;
        }

        @keyframes launch {

            0%,
            100% {
                transform: translateY(0) rotate(0);
            }

            50% {
                transform: translateY(-10px) rotate(6deg);
            }
        }

        .col-sub {
            color: var(--muted);
            font-size: 1.02rem;
            max-width: 560px;
            margin: 16px auto 0;
            margin-top: 40px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(0, 328px));
            gap: 44px;
            justify-content: center;
        }

        /* Product card */
        .card {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: transform .5s var(--ease), box-shadow .5s var(--ease);
            /* reveal state */
            opacity: 0;
            transform: translateY(40px);
        }

        .card.in {
            opacity: 1;
            transform: translateY(0);
            transition: transform .8s var(--ease), box-shadow .5s var(--ease), opacity .8s var(--ease);
        }

        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(95, 202, 119, 0.25);
        }

        .card-media {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf2 100%);
        }

        /* contain + padding = the whole garment is visible (zoomed out), not cropped */
        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .8s var(--ease);
        }

        .card:hover .card-media img {
            transform: scale(1.04);
        }

        .card-body {
            padding: 16px 18px 20px;
        }

        .card-cat {
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            color: #8a95a5;
        }

        .card-titlerow {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            margin-top: 4px;
        }

        .card-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.28rem;
            line-height: 1.08;
            color: #1a1a2e;
        }

        .card-tag {
            color: #5a6a7e;
            font-size: 0.76rem;
            font-weight: 500;
            margin-top: 5px;
        }

        .card-desc {
            color: #6b7b8e;
            font-size: 0.74rem;
            line-height: 1.55;
            margin-top: 11px;
        }

        .card-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
        }

        .dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: var(--dot);
            box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.12);
        }

        .price {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.3rem;
            color: #1a1a2e;
        }

        .price .r {
            font-size: 0.95rem;
            opacity: 0.85;
            margin-right: 2px;
        }

        .grid-status {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--muted);
            padding: 30px 0;
        }

        .card {
            cursor: pointer;
        }

        .card-media {
            pointer-events: none;
        }

        /* Out-of-stock card */
        .oos-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.88);
            color: #333;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 30px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(4px);
        }

        .card.is-oos .card-media img {
            filter: grayscale(0.85) brightness(0.7);
        }

        .card.is-oos .price {
            opacity: 0.7;
        }

        /* Size chips (modal) */
        .modal-sizes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .size-chip {
            padding: 8px 14px;
            border-radius: 12px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.05);
            color: #1a1a2e;
            border: 1.5px solid transparent;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: var(--font-body);
            transition: all .2s;
        }

        .size-chip:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .size-chip.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
        }

        .size-chip.oos {
            opacity: 0.4;
            cursor: not-allowed;
            text-decoration: line-through;
            background: rgba(0, 0, 0, 0.03);
        }

        .size-chip.oos:hover {
            background: rgba(255, 255, 255, 0.04);
        }

        /* Buy Now button */
        .modal-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .modal-cta svg {
            flex-shrink: 0;
        }

        .modal-cta.is-oos {
            background: rgba(255, 255, 255, 0.12);
            color: var(--muted);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        .modal-cta.is-oos svg {
            display: none;
        }

        /* ===================== QUICK-VIEW MODAL ===================== */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.open {
            display: flex;
        }

        .modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            animation: fadeIn .3s var(--ease);
        }

        .modal-card {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
            width: min(920px, 100%);
            max-height: 90vh;
            overflow: hidden;
            border-radius: 26px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.15);
            animation: popIn .4s var(--ease);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.97);
            }
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 4;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            color: #333;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
            transition: background .2s, transform .2s;
        }

        .modal-close:hover {
            background: rgba(255, 84, 112, 0.85);
            color: #fff;
            transform: rotate(90deg);
        }

        /* Gallery / slider */
        .modal-gallery {
            position: relative;
            min-width: 0;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf2 100%);
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 340px;
            overflow: hidden;
        }

        .slides {
            display: flex;
            height: 100%;
            transition: transform .45s var(--ease);
        }

        .slides .slide {
            position: relative;
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slides .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 22px;
        }

        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            color: #1a1a2e;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: background .2s, transform .2s;
        }

        .slide-nav:hover {
            background: #fff;
        }

        .slide-nav.prev {
            left: 12px;
        }

        .slide-nav.next {
            right: 12px;
        }

        .slide-nav:active {
            transform: translateY(-50%) scale(0.92);
        }

        .slide-dots {
            position: absolute;
            bottom: 14px;
            left: 0;
            right: 0;
            z-index: 3;
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .slide-dots button {
            width: 9px;
            height: 9px;
            padding: 0;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.45);
            transition: background .2s, transform .2s;
        }

        .slide-dots button.active {
            background: #fff;
            transform: scale(1.25);
        }

        /* Info panel */
        .modal-info {
            padding: 34px 30px 28px;
            min-width: 0;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .modal-type {
            font-size: 0.66rem;
            font-weight: 600;
            letter-spacing: 2.6px;
            text-transform: uppercase;
            color: var(--brand);
        }

        .modal-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.85rem;
            line-height: 1.06;
            margin-top: 6px;
            color: #1a1a2e;
        }

        .modal-tagline {
            color: #5a6a7e;
            font-weight: 500;
            margin-top: 6px;
        }

        .modal-desc {
            color: #6b7b8e;
            font-size: 0.86rem;
            line-height: 1.62;
            margin-top: 14px;
        }

        .modal-swatches-label {
            margin-top: 20px;
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #8a95a5;
        }

        .modal-swatches-label span {
            color: #1a1a2e;
            text-transform: none;
            letter-spacing: 0;
            font-weight: 600;
            margin-left: 4px;
        }

        .modal-colors {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .swatch {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            padding: 0;
            cursor: pointer;
            background: var(--sw);
            border: 2px solid transparent;
            box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.12);
            transition: transform .2s, box-shadow .2s;
        }

        .swatch:hover {
            transform: scale(1.12);
        }

        .swatch.active {
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--green-bright);
            transform: scale(1.1);
        }

        .modal-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: auto;
            padding-top: 24px;
        }

        .modal-price {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.7rem;
            color: #1a1a2e;
        }

        .modal-cta {
            border: none;
            cursor: pointer;
            color: #fff;
            font-weight: 700;
            font-family: var(--font-body);
            padding: 13px 26px;
            border-radius: 40px;
            font-size: 0.92rem;
            background: linear-gradient(96deg, var(--brand), var(--green));
            box-shadow: 0 8px 20px -8px rgba(14, 130, 196, 0.4);
            transition: transform .2s, box-shadow .2s;
        }

        .modal-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px -10px rgba(95, 202, 119, 0.6);
        }

        @media (max-width: 720px) {
            .modal {
                padding: 14px;
            }

            .modal-card {
                grid-template-columns: minmax(0, 1fr);
                max-height: 90vh;
                overflow-y: auto;
            }

            /* cap the image area so the popup isn't dominated by a giant photo */
            .modal-gallery {
                height: 38vh;
                max-height: 320px;
            }

            .slider {
                height: 100%;
                min-height: 0;
            }

            .slides .slide img {
                padding: 14px;
            }

            .modal-info {
                padding: 20px 18px 22px;
            }

            .modal-title {
                font-size: 1.4rem;
            }

            .modal-desc {
                font-size: 0.82rem;
            }
        }

        /* ===================== ABOUT US ===================== */
        .about {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 80px 20px 30px;
            scroll-margin-top: 100px;
        }

        .about-inner {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .js-reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }

        .js-reveal.in {
            opacity: 1;
            transform: none;
        }

        .about-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2.1rem, 5vw, 3.3rem);
            line-height: 1.03;
            letter-spacing: -0.5px;
            margin: 8px 0 22px;
            color: #1a1a2e;
        }

        .about-story p {
            color: #5a6a7e;
            font-size: 1.02rem;
            line-height: 1.78;
            margin-bottom: 15px;
        }

        .about-story strong {
            color: #1a1a2e;
            font-weight: 600;
        }

        .about-story em {
            color: var(--brand);
            font-style: italic;
        }

        .about-motto {
            margin-top: 20px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.25rem;
            color: #1a1a2e !important;
        }

        .about-motto span {
            background: linear-gradient(96deg, var(--brand-bright), var(--green-bright));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .contact-card {
            position: relative;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 24px;
            padding: 30px 28px;
            box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.08);
        }

        .contact-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.6rem;
            color: #1a1a2e;
        }

        .contact-lead {
            color: #5a6a7e;
            margin-top: 4px;
        }

        .contact-brand {
            color: #1a1a2e;
            font-weight: 600;
            margin: 16px 0 14px;
        }

        .contact-brand span {
            color: #8a95a5;
            font-weight: 400;
        }

        .contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: #3a4a5e;
            font-size: 0.92rem;
            line-height: 1.5;
        }

        .contact-list .ci {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 9px;
            background: rgba(95, 202, 119, 0.14);
            color: var(--green-bright);
        }

        .contact-list .ci svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .contact-list li {
            align-items: center;
        }

        .contact-list a {
            color: #1a1a2e;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            transition: color .2s, border-color .2s;
        }

        .contact-list a:hover {
            color: var(--green);
            border-color: var(--green);
        }

        .contact-hours {
            margin-top: 20px;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.03);
            border-radius: 14px;
        }

        .hours-label {
            display: block;
            font-size: 0.66rem;
            letter-spacing: 2.4px;
            text-transform: uppercase;
            color: var(--green);
            font-weight: 600;
        }

        .hours-value {
            display: block;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a1a2e;
            margin-top: 3px;
        }

        .hours-note {
            color: #8a95a5;
            font-size: 0.84rem;
        }

        .contact-cta {
            display: flex;
            gap: 12px;
            margin-top: 22px;
        }

        .contact-cta a {
            flex: 1;
            text-align: center;
            padding: 12px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform .2s, box-shadow .2s;
        }

        .contact-cta a:hover {
            transform: translateY(-2px);
        }

        .btn-call {
            background: rgba(0, 0, 0, 0.05);
            color: #1a1a2e;
            border: 1px solid rgba(0, 0, 0, 0.12);
        }

        .btn-wa {
            background: linear-gradient(96deg, #25d366, #128c4a);
            color: #fff;
            box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.4);
        }

        @media (max-width: 820px) {
            .about-inner {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .about {
                padding-top: 60px;
            }
        }

        /* Heart / wishlist */
        .heart {
            border: none;
            background: transparent;
            cursor: pointer;
            color: rgba(0, 0, 0, 0.35);
            flex-shrink: 0;
            padding: 2px;
            transition: transform .25s var(--ease), color .25s;
        }

        .heart svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .heart:hover {
            transform: scale(1.15);
            color: #ff5470;
        }

        .heart.active {
            color: #ff5470;
        }

        .heart.active svg {
            fill: #ff5470;
        }

        /* ===================== FOOTER ===================== */
        .footer {
            max-width: var(--maxw);
            margin: 0px auto 0;
            padding: 10px 20px 50px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .footer-thread {
            display: block;
            margin: 0 auto 22px;
            width: 180px;
            opacity: 0.5;
        }

        .footer-brand {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .footer-brand img:first-child {
            width: 38px;
            height: auto;
        }

        .footer-wordmark {
            height: 80px;
            width: auto;
        }

        .footer-brand .script {
            font-family: var(--font-script);
            font-size: 1.5rem;
        }

        .footer-brand .word {
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.85rem;
        }

        .footer-tag {
            font-family: var(--font-script);
            font-size: 1.25rem;
            color: var(--green-bright);
        }

        .footer-copy {
            color: var(--muted-dim);
            font-size: 0.78rem;
            margin-top: 14px;
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 940px) {

            .nav-menu,
            .thread {
                display: none;
            }

            .nav-pill {
                justify-content: space-between;
                padding: 10px 14px;
            }

            .center-logo {
                display: none;
            }

            .brand-icon {
                width: 42px;
                height: auto;
            }

            .hamburger {
                display: flex;
                flex-direction: column;
                gap: 5px;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 8px;
            }

            .hamburger span {
                width: 24px;
                height: 2px;
                background: #1a1a2e;
                border-radius: 2px;
                transition: .3s;
            }

            .mobile-menu {
                position: fixed;
                top: 84px;
                left: 20px;
                right: 20px;
                z-index: 99;
                background: rgba(255, 255, 255, 0.95);
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 20px;
                backdrop-filter: blur(14px);
                padding: 10px;
                display: none;
                flex-direction: column;
                box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
            }

            .mobile-menu.open {
                display: flex;
            }

            .mobile-menu a {
                padding: 13px 16px;
                font-weight: 600;
                letter-spacing: 1px;
                color: #5a6a7e;
                border-radius: 12px;
                font-size: 0.9rem;
            }

            .mobile-menu a.mm-active {
                color: #1a1a2e;
            }

            .mobile-menu a.mm-active:active {
                background: rgba(14, 130, 196, 0.08);
            }

            .hero {
                padding-top: 150px;
            }

            .hero-boys-wrap {
                flex-direction: column;
                align-items: center;
            }

            .hero-boys {
                flex: none;
                width: 85%;
                max-height: none;
            }
        }

        @media (min-width: 941px) {
            .mobile-menu {
                display: none;
            }
        }

        @media (max-width: 780px) {
            .card-grid {
                grid-template-columns: minmax(0, 400px);
                gap: 40px;
            }
        }

        /* Accessibility */
        :focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
            border-radius: 4px;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-delay: 0s !important;
                transition-duration: 0.001ms !important;
            }

            .navbar,
            .center-logo,
            .hero-boys-wrap,
            .card {
                opacity: 1 !important;
            }

            .hero-title .line>span {
                transform: none !important;
            }

            .thread img {
                clip-path: none !important;
            }
        }