:root {
    --red: #e1261c;
    --black: #0b0b0b;
    --ink: #151515;
    --cream: #f4f2ed;
    --white: #fff;
    --line: rgba(255, 255, 255, 0.16);
    --pad: clamp(24px, 5vw, 80px);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}
body {
    margin: 0 !important;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:focus, a:active {
	outline: 0;
}
button {
    font: inherit;
}
.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 94px;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.35s ease;
}
.site-header.compact {
    height: 72px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}
.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.brand img {
    width: 128px;
    filter: brightness(0) invert(1);
}
.brand span,
.footer-brand span {
    display: grid;
    gap: 3px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.brand b,
.footer-brand b {
    font:
        600 14px/1.2 "Barlow Condensed",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.brand small,
.footer-brand small {
    font-size: 9px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}
.main-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #fff;
    outline: 0;
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 2px;
	background: var(--red);
	transition: 0.25s;
}
.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    width: 42px;
    height: 42px;
}
.menu-toggle i {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 6px auto;
    transition: 0.25s;
}
.floating-nav {
    position: fixed;
    z-index: 40;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 16px;
}
.floating-nav a {
    width: 9px;
    height: 9px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.floating-nav a.active {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.35);
}
.floating-nav span {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: #111;
    color: #fff;
    padding: 6px 8px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}
.floating-nav a:hover span {
    opacity: 1;
}
.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}
.hero-media,
.hero-shade {
    position: absolute;
    inset: -14% 0;
}
.hero-media img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}
.hero-shade {
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 55%);
}
.hero-content {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 2 * var(--pad)));
	padding-top: 40px;
	text-align: center;
}
.eyebrow {
	margin: 0 0 22px;
	color: var(--red);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.eyebrow.dark {
    color: var(--red);
}
h1,
h2 {
    font-family: "Barlow Condensed", Impact, sans-serif;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.035em;
}
h1 {
	font-size: clamp(58px, 8.3vw, 110px);
	line-height: 0.94;
}
h2 {
    font-size: clamp(48px, 6.5vw, 100px);
    line-height: 0.9;
}
.button {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin-top: 46px;
	padding: 17px 22px;
	background: var(--red);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff !important;
	border-radius: 10px;
	transition: all 0.3s;
}
.button:hover {
	background-color: #000;
}
.button span {
	font-size: 18px;
}
.scroll-cue {
    position: absolute;
    z-index: 2;
    left: var(--pad);
    bottom: 28px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: flex;
    align-items: center;
    gap: 12px;
}
.scroll-cue span {
    height: 1px;
    width: 45px;
    background: #fff;
}
.section {
    position: relative;
    padding: clamp(90px, 12vw, 180px) var(--pad);
}
.section-number {
    position: absolute;
    right: var(--pad);
    top: 50px;
    font: 700 clamp(72px, 10vw, 160px) / 1 "Barlow Condensed";
    color: rgba(0, 0, 0, 0.045);
}
.story,
.why {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
    gap: clamp(50px, 10vw, 170px);
    align-items: end;
}
.story-copy,
.why-copy {
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.85;
}
body .text-link {
	display: inline-flex;
	gap: 15px;
	border: 2px solid var(--ink);
	/* padding: 0 0 8px; */
	margin-top: 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #151515;
	line-height: 20px;
	padding: 11px 22px;
	border-radius: 10px;
	transition: all 0.3s;
}
body .text-link:hover {
	background-color: var(--red);
	color: #fff;
	border-color: #fff;
}
.product-parallax {
    position: relative;
    min-height: 800px;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--pad);
}
.product-bg {
    position: absolute;
    inset: -10%;
    background: #101010;
}
.product-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}
.product-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.28) 70%);
}
.product-panel {
    position: relative;
    z-index: 2;
}
.product-panel ul {
    list-style: none;
    padding: 0;
    margin: 46px 0 0;
    display: grid;
    gap: 0;
}

.product-panel li {
	padding: 17px 0 17px 30px;
	border-top: 1px solid var(--line);
	font-size: 16px;
	position: relative;
}
.product-panel li:first-child {
	border: 0;
}
.product-panel li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #fff;
	font-weight: 600;
	font-size: 22px;
	width: 22px;
	height: 22px;
	line-height: 22px;
}
.why {
    align-items: center;
}
.dark-section {
    background: var(--black);
    color: #fff;
}
.gallery {
    overflow: hidden;
}
.gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}
.slider-controls {
    display: flex;
    align-items: center;
    gap: 24px;
}
.slider-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid #444;
    background: none;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    padding: 6px 10px 10px;
}
.slider-controls button:hover {
    background: var(--red);
    border-color: var(--red);
}
.slider-controls span {
	font: 500 15px "Barlow Condensed";
	letter-spacing: 0.1em;
}
.slider {
    position: relative;
    height: clamp(320px, 46vw, 650px);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4%);
    transition:
        opacity 0.55s ease,
        transform 0.7s ease,
        visibility 0.55s;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide span {
	position: absolute;
	left: 25px;
	bottom: 25px;
	background: rgba(0, 0, 0, 0.78);
	padding: 11px 14px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 3px;
}
.slider-progress {
    height: 2px;
    background: #282828;
    margin-top: 32px;
}
.slider-progress i {
    display: block;
    width: 16.666%;
    height: 100%;
    background: var(--red);
    transition: transform 0.45s ease;
}
.standalone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(45px, 8vw, 125px);
    align-items: center;
}
.standalone-image {
    background: #e8e5df;
    overflow: hidden;
}
.standalone-image img {
    width: 100%;
    aspect-ratio: 1/1.05;
    object-fit: cover;
    transition: transform 0.6s;
}
.standalone-image:hover img {
    transform: scale(1.035);
}
.standalone-copy h2 {
    font-size: clamp(44px, 5vw, 76px);
    margin-bottom: 35px;
}
.standalone-copy > p:not(.eyebrow) {
	font-size: 20px;
	line-height: 1.8;
	color: #000;
}
.difference {
	padding-top: 0;
	margin-top: -40px;
}
.difference-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #ccc;
	margin-top: 0;
}
.difference-grid article {
    padding: 35px 26px;
    border-right: 1px solid #ccc;
}
.difference-grid article:first-child {
    padding-left: 0;
}
.difference-grid article:last-child {
    border: 0;
}
.difference-grid b {
	color: var(--red);
	font: 700 25px "Barlow Condensed";
}
.difference-grid h3 {
	font: 700 28px/1 "Barlow Condensed";
	text-transform: uppercase;
	margin: 30px 0 15px;
}
.difference-grid p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}
.difference p {
	margin: 0;
}
.compare-head {
    max-width: 850px;
    margin-bottom: 55px;
}
.compare-head h2 {
    font-size: clamp(48px, 6vw, 90px);
}
.table-wrap {
    overflow: auto;
    border: 1px solid #2e2e2e;
}
table {
	width: 100%;
	border-collapse: collapse;
	min-width: 820px;
	margin: 0;
}
th,
td {
    padding: 24px 22px;
    text-align: left;
    border-bottom: 1px solid #2e2e2e;
    border-right: 1px solid #2e2e2e;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.55;
}
thead th {
	background: #161616;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font: 600 23px "Barlow Condensed";
}
thead th:nth-child(2) {
    background: var(--red);
}
tbody th {
    font: 600 19px "Barlow Condensed";
    text-transform: uppercase;
    width: 20%;
}
tbody td:nth-child(2) {
    background: rgba(225, 38, 28, 0.09);
    color: #fff;
}
tbody td:last-child {
    color: #aaa;
}
.footer {
    padding: 55px var(--pad);
    background: #050505;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}
.footer-brand img {
    width: 105px;
    filter: brightness(0) invert(1);
}
.footer .footer-nav  {
    display: flex;
    gap: 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-nav a{
    color: #fff;
}
.footer .footer-nav a:hover {
	color: var(--red);
}
.footer-top {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--red) !important;
}
.back-top {
    position: fixed;
    z-index: 45;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: 100dvh !important;

        margin: 0 !important;
        padding: 50px 16px 30px !important;

        background: #1e1e1e !important;

        display: flex !important;
        flex-direction: column;
        align-items: stretch;

        overflow-y: auto;
        z-index: 9999;

        visibility: hidden;
        opacity: 0;
        pointer-events: none;

        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }
    .main-nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    html.header-menu-open,
    body.header-menu-open {
        overflow: hidden !important;
        height: 100% !important;
    }

    body.header-menu-open {
        position: fixed !important;
        width: 100% !important;
    }
    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid #222;
        width: 100%;
    }
    .main-nav .menu-item:last-child a{
        border-bottom: 0;
    }
    .main-nav a::after {
        bottom: -3px;
    }
    .menu-toggle {
        position: relative;
        width: 32px;
        height: 32px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
        cursor: pointer;
        z-index: 10001;
    }

    .menu-toggle i {
        display: block;
        width: 24px;
        height: 2px;
        margin: 0;
        background: #fff;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* OPEN = CROSS */
    .menu-toggle[aria-expanded="true"] i:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] i:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }
    .main-nav a {
        font-size: 14px;
        letter-spacing: 0.09em;
        width: 100%;
    }
    .story-copy,
    .why-copy {
        max-width: 680px;
    }
    .difference-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer {
        align-items: center;
    }
    .footer .footer-nav {
        font-size: 11px;
    }
    .footer nav {
        width: 100%;
        order: 3;
    }
    .floating-nav {
        display: none;
    }
}
@media (max-width: 640px) {
    :root {
        --pad: 22px;
    }
    .brand {
        gap: 10px;
    }
    .brand img {
        width: 82px;
    }
    .brand span {
        padding-left: 10px;
    }
    .brand b {
        font-size: 10px;
    }
    .hero-content {
        padding-top: 0;
    }
    .hero-shade {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.33)),
            linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
    }
    h1 {
        font-size: clamp(52px, 17vw, 78px);
    }
    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-number {
        top: 24px;
    }
    .product-parallax {
        min-height: 690px;
        align-items: end;
    }
    .product-panel {
        padding-bottom: 40px;
    }
    .gallery-head {
        align-items: center;
    }
    .slider-controls {
        /* width: 100%; */
        justify-content: space-between;
    }
    .slider {
        height: 300px;
    }
    .difference-grid {
        grid-template-columns: 1fr;
    }
    .difference-grid h3 {
        margin-top: 25px;
    }
    .footer {
        display: grid;
    }
    /* .footer-brand span {
        display: none;
    } */
    .footer .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .back-top {
        right: 16px;
        bottom: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Client feedback update */
:root {
    --black: #1e1e1e;
}
.site-header.compact {
    background: rgba(30, 30, 30, 0.96);
}
.brand span,
.footer-brand span {
    display: flex;
    min-height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    color:#fff;
}
.brand b,
.footer-brand b {
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: 0.065em;
}
.brand small,
.footer-brand small {
    font-size: 11px;
    line-height: 1.25;
    opacity: 0.78;
}
.main-nav a {
    font-size: 14px;
    letter-spacing: 0.09em;
}
.story-copy,
.why-copy {
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.75;
}
.product-bg {
    background: #1e1e1e;
}
.slide:nth-child(5) img {
    object-fit: contain;
    background: #1e1e1e;
}
.contact-cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(40px, 8vw, 120px);
    background: #ece9e2;
}
.contact-copy {
    max-width: 850px;
}
.contact-copy h2 {
    font-size: clamp(46px, 6vw, 88px);
}
.contact-copy > p:last-child {
    max-width: 680px;
    margin: 28px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
.contact-button {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
}
.footer {
    background: #1e1e1e;
}
@media (max-width: 980px) {
    .main-nav {
        background: #1e1e1e;
        gap:0;
    }
    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-button {
        margin-top: 0;
    }
}
@media (max-width: 640px) {
    .brand b {
        font-size: 10px;
    }
    .brand small {
        font-size: 8px;
        display: block;
    }
    .brand span {
        min-height: 34px;
    }
    .story-copy,
    .why-copy {
        font-size: 17px;
        line-height: 1.7;
    }
    .contact-copy > p:last-child {
        font-size: 16px;
    }
    .contact-button {
        width: 100%;
        justify-content: space-between;
    }
}

/* v2 refinements */
.brand img {
    width: 104px;
}
.site-header.compact .brand img {
    width: 86px;
}
.site-header.compact .brand b {
    font-size: 12px;
}
.site-header.compact .brand small {
    font-size: 8px;
}
.brand img,
.brand b,
.brand small {
    transition: 0.35s ease;
}
.hero-media {
    inset: -14% 0;
    will-change: transform;
}
.hero-media img {
    height: 128%;
    will-change: transform;
}
.product-bg {
    inset: -16% -5%;
    will-change: transform;
}
.product-bg img {
    height: 132%;
    will-change: transform;
}
.difference-grid {
    border: 1px solid #ccc;
}
.difference-grid article {
    border-right: 1px solid #ccc;
    border-bottom: 0;
}
.difference-grid article:first-child {
    padding-left: 26px;
}
.difference-grid article:last-child {
    border-right: 0;
}
.standalone {
    overflow: hidden;
}
.table-wrap {
    border: 1px solid #353535;
}
table tr:last-child th,
table tr:last-child td {
    border-bottom: 0;
}
table th:last-child,
table td:last-child {
    border-right: 0;
}
html {
    scroll-behavior: auto;
}
.section,
.gallery-head,
.standalone-image,
.difference-grid,
.table-wrap {
    will-change: transform;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
@media (max-width: 980px) {
    .brand img {
        width: 88px;
    }
    .site-header.compact .brand img {
        width: 76px;
    }
    .section {
        padding-top: clamp(70px, 9vw, 100px);
        padding-bottom: clamp(70px, 9vw, 100px);
    }
    .story,
    .why,
    .standalone {
        gap: 34px;
    }
    .standalone-copy h2 {
        margin-bottom: 24px;
    }
    .standalone-copy > p:not(.eyebrow) {
        margin: 0 0 14px;
    }
    .difference {
        padding-top: 20px;
    }
}
@media (max-width: 640px) {
    html {
        scroll-padding-top: 66px;
    }
    .site-header.compact {
        height: auto;
    }
    .brand img {
        width: 70px;
    }
    .site-header.compact .brand img {
        width: 62px;
    }
    .brand b {
        font-size: 9px;
    }
    .brand span {
        gap: 1px;
    }
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    .main-nav {
        inset: 84px 0 auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .main-nav a {
        padding: 16px 0;
        line-height: 1.2;
    }
    .hero-content {
        width: calc(100% - 44px);
    }
    .button {
        margin-top: 30px;
    }
    .scroll-cue {
        bottom: 18px;
    }
    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .story,
    .why,
    .standalone {
        gap: 26px;
    }
    .story-copy,
    .why-copy {
        font-size: 15px;
        line-height: 1.65;
    }
    .product-parallax {
        min-height: 590px;
    }
    .product-panel {
        padding-bottom: 12px;
    }
    .product-panel ul {
        margin-top: 28px;
    }
    .product-panel li {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .gallery-head {
        margin-bottom: 30px;
    }
    .gallery {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .standalone-image img {
        aspect-ratio: 1/0.88;
    }
    .standalone-copy h2 {
        margin-bottom: 20px;
    }
    .standalone-copy > p:not(.eyebrow) {
        line-height: 1.65;
        margin-bottom: 12px;
    }
    .difference {
        padding-top: 6px;
    }
    .difference-grid {
        margin-top: 28px;
    }
    .difference-grid article,
    .difference-grid article:first-child {
        padding: 24px 20px;
    }
    .difference-grid article:last-child {
        border-bottom: 0;
    }
    .difference-grid h3 {
        margin: 20px 0 12px;
    }
    .difference-grid p {
        margin: 0;
    }
    .compare-head {
        margin-bottom: 32px;
    }
    .compare {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .footer {
        padding-top: 38px;
        padding-bottom: 38px;
        gap: 22px;
    }
}

/* Final header and CTA alignment */
.brand span {
    min-height: 56px;
    gap: 5px;
}
.brand b {
    font-size: 24px;
    line-height: 1.05;
}
.brand small {
    font-size: 14px;
    line-height: 1.2;
}
.site-header.compact .brand span {
    min-height: 44px;
    color: #fff;
}
.site-header.compact .brand b {
    font-size: 16px;
}
.site-header.compact .brand small {
    font-size: 9px;
}
.contact-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
}
.contact-button {
    align-self: flex-start;
    margin: 0;
}
@media (max-width: 980px) {
    .brand span {
        min-height: 48px;
    }
    .brand b {
        font-size: 16px;
    }
    .brand small {
        font-size: 9px;
    }
}
@media (max-width: 640px) {
    .brand span {
        min-height: 34px;
        gap: 2px;
    }
    .brand b,
    .site-header.compact .brand b {
        font-size: 10px;
    }
    .brand small,
    .site-header.compact .brand small {
        font-size: 7px;
    }
    .contact-cta {
        gap: 24px;
    }
    .contact-button {
        width: auto;
        min-width: 210px;
    }
}

/* 27 aug */
@media (max-width:1500px) {
    .section {
        padding: clamp(90px, 8vw, 180px) var(--pad);
    }
}
@media (max-width:1365px) {
    .product-parallax {
        min-height: 700px;
    }
    h1 {
        font-size: clamp(58px, 8.3vw, 100px);
    }
    h2, .compare-head h2 , .contact-copy h2 {
        font-size: 70px;
    }
    .hero-content { 
        width: 900px;
    }
    .story, .why {
        grid-template-columns: 54% 46%;
        gap: 0;
    }
    .standalone-copy h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }
    .standalone-copy > p:not(.eyebrow) {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
    .difference-grid h3 {
        font: 700 24px/1 "Barlow Condensed";
        margin: 25px 0 15px;
    }
    .compare-head {
        margin-bottom: 30px;
    }
}
@media (max-width:1199px) {
    .hero {
        min-height: 93svh;
    }
    .story, .why {
        align-items: center;
    }
    h2, .compare-head h2, .contact-copy h2 {
        font-size: 65px;
    }
    .eyebrow {
        font-size: 13px;
    }
    .product-parallax {
        min-height: 650px;
    }
    .product-panel {
        margin-top: -40px;
    }
    .product-panel ul {
        margin: 25px 0 0;
    }
    .standalone-copy h2 {
        font-size: 47px;
    }
    .standalone-copy > p:not(.eyebrow) {
        font-size: 17px;
    }
    .difference {
        margin-top: -110px;
    }
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .difference-grid .article-col-1, .difference-grid .article-col-2 {
        border-bottom: 1px solid #ccc;
    }
    .difference-grid .article-col-2 {
        border-right: 0;
    }
    .contact-copy {
        max-width: 750px;
    }
    .footer-top {
        display: none;
    }
}
@media (max-width:1024px) {
    .brand span {
        width: 300px;
    }
    .brand b {
        font-size: 20px;
    }
    .brand small {
        font-size: 13px;
    }
    .main-nav {
        gap: 25px;
    }
    .site-header {
        padding: 15px 25px;
    }
    .section {
        padding: 60px 25px;
        margin: 0;
    }
    .button{
        padding: 13px 19px;
        font-size: 13px;
    }
    h1 {
        font-size: 65px;
    }
    h2, .compare-head h2, .contact-copy h2 {
        font-size: 55px;
    }
    .hero {
        min-height: 85svh;
    }
    .hero-content {
        width: 100%;
        padding: 130px 30px 40px;
    }
    .story-copy p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .why-copy p{
        margin-top: 0;
    }
    .story-copy, .why-copy {
        font-size: 17px;
        line-height: 30px;
        grid-template-columns: 50% 50%;
    }
    .section-number {
        top: 20px;
    }
    body .text-link {
        font-size: 13px;
        padding: 10px 15px;
    }
    .product-parallax {
        min-height: 550px;
    }
    .product-panel li {
        padding: 15px 0 15px 27px;
        font-size: 15px;
    }
    .product-panel li::before {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    .product-panel {
        margin-top: -60px;
    }
    .gallery-head {
        margin-bottom: 25px;
    }
    .slider-progress {
        margin-top: 0;
    }
    .slide:nth-child(5) img {
        object-fit: cover;
    }   
    .standalone-copy > p:not(.eyebrow) {
        font-size: 15px;
    }
    .standalone-copy h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .standalone-image img {
        aspect-ratio: unset;
    }
    .difference-grid {
        margin-top: -15px;
    }
    .standalone .eyebrow {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .difference.section {
        padding-top: 0;
        margin-top: -10px;
    }
    .difference-grid p {
        font-size: 15px;
    }
    .difference-grid h3 {
        font: 700 22px/1 "Barlow Condensed";
    }
    .compare-head {
        margin-bottom: 10px;
    }
    thead th {
        font: 600 18px "Barlow Condensed";
    }
    tbody th {
        font: 600 17px "Barlow Condensed";
    }
    th, td {
        padding: 20px 20px;
    }
    .footer {
        padding: 40px 25px;
    }
}
@media (max-width: 980px) {
    .main-nav {
        gap:0px;
        padding: 20px;
    }
    .main-nav a {
        font-size: 12px;
    }

}
@media (max-width:767px) {
    .hero {
        min-height: 70svh;
    }
    h1 {
        font-size: 50px;
        line-height: 50px;
    }
    h2, .compare-head h2, .contact-copy h2 {
        font-size: 32px;
    }
    h2 br {
        display: none;
    }
    .site-header {
        padding: 15px 15px;
        height: auto;
    }
    .eyebrow {
        font-size: 11px;
        margin-bottom: 12px;
    }
    .button {
        padding: 9px 15px;
        font-size: 12px;
    }
    .hero-content {
        padding: 110px 30px 40px;
    }
    .section {
        padding: 40px 20px;
    }
    .story-copy, .why-copy {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }
    .story, .why {
        grid-template-columns: 1fr;
    }
    body .text-link {
        font-size: 12px;
        padding: 8px 12px;
        gap: 7px;
        margin-top: 10px;
    }
    .story-copy svg {
        width: 18px;
    }
    .product-parallax {
        min-height: 100%;
        padding: 100px 20px;
    }
    .product-panel li {
        padding: 9px 0 9px 27px;
        font-size: 14px;
    }
    .product-panel {
        margin-top: -30px;
    }
    .why-copy p{
        margin-top: 0;
    }
    .slider-controls button {
        width: 37px;
        height: 37px;
        padding: 0 4px 4px;
    }
    .slider-controls span {
        font: 500 14px "Barlow Condensed";
    }
    .slider-controls {
        gap: 14px;
        width: 230px;
        justify-content: end;
    }
    .gallery-head {
        margin-bottom: 10px;
    }
    .standalone {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .standalone-image img {
        height: 350px;
    }
    .standalone-copy h2 {
        font-size: 33px;
        margin-bottom: 15px;
    }
    .standalone-copy > p:not(.eyebrow) {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .difference.section {
        padding-top: 0;
        margin-top: -10px;
    }
    .difference-grid h3 {
        font: 700 19px/1 "Barlow Condensed";
        margin: 10px 0 15px;
    }
    .difference-grid p {
        font-size: 14px;
        line-height: 22px;
    }
    th, td {
        padding: 14px 15px;
    }
    .contact-copy > p:last-child {
        max-width: 100%;
        margin: 15px 0 0;
        font-size: 15px;
        line-height: 22px;
    }
    .contact-cta {
        gap: 15px;
    }
}
@media (max-width:479px) {
    h1 {
        font-size: 36px;
        line-height: 36px;
    }
    .hero {
        min-height: 55svh;
    }
    .brand span {
        width: 100px;
    }
    .brand small {
        display: none;
    }
    .brand b {
        font-size: 14px;
    }
    .menu-toggle i {
        width: 20px;
        height: 2px;
    }
    .menu-toggle {
        width: 30px;
        height: 30px;
    }
    .button {
        padding: 9px 15px;
        font-size: 12px;
        gap: 10px;
        margin-top: 20px;
    }
    .button span {
        font-size: 14px;
    }
    h2, .compare-head h2, .contact-copy h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .section {
        padding: 30px 15px;
    }
    .story-copy, .why-copy {
        font-size: 14px;
        line-height: 21px;
        margin-top: 0;
    }
    body .text-link {
        font-size: 12px;
        padding: 6px 10px;
        gap: 5px;
        margin-top: 7px;
        border-width: 1px;
        font-weight: 600;
    }
    .story.section {
        padding-bottom: 40px;
    }
    .product-parallax {
        padding: 60px 15px;
    }
    .product-panel {
        margin-top: -50px;
    }
    .product-panel ul {
        margin: 13px 0 0;
    }
    .product-panel li::before {
        font-size: 18px;
    }
    .product-panel li {
        padding: 9px 0 9px 22px;
        font-size: 13px;
    }
    .slider-controls {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .gallery h2 {
        line-height: 30px;
        padding: 0 20px;
    }
    .gallery-head {
        margin-bottom: 10px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    .eyebrow {
        margin-bottom: 8px;
    }
    .slider-progress {
        margin-top: -6px;
    }
    .slide span {
        left: 15px;
        bottom: 15px;
        padding: 8px 14px;
        font-size: 12px;
        background: rgba(0, 0, 0, 0.9);
    }
    .standalone-image img {
        height: 240px;
    }
    .standalone-copy h2 {
        font-size: 25px;
        margin-bottom: 12px;
        line-height: 27px;
    }
    .standalone {
        gap: 15px;
    }
    .standalone-copy > p:not(.eyebrow) {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 5px;
    }
    .standalone .eyebrow {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .difference-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .difference-grid .article-col-3 {
        border-right: 0;
        border-bottom: 1px solid #ccc;
    }
    .difference-grid article {
        padding: 17px 15px;
    }
    .difference-grid h3 {
        font: 700 19px/1 "Barlow Condensed";
        margin: 6px 0 9px;
    }
    .difference-grid b {
        font: 700 21px "Barlow Condensed";
    }
    .difference.section {
        padding-bottom: 50px;
    }
    .compare-head {
        margin-bottom: 0;
    }
    .table-wrap {
        border: 1px solid #353535;
        margin-bottom: 6px;
    }
    /* .compare-head {
        margin-bottom: -9px;
    } */
    .compare .eyebrow {
        font-size: 10px;
    }
    .contact-copy > p:last-child {
        margin: 10px 0 0;
        font-size: 14px;
        line-height: 20px;
    }
    .button {
        gap: 8px;
        margin-top: 3px;
        min-width: auto;
    }
    .hero-content h1 {
        margin-bottom: 15px;
    }
    .main-nav {
        inset: 67px 0 auto;
        padding-top: 16px;
        padding-bottom: 36px;
    }
}