:root {
    --ink: #1d2522;
    --ink-soft: #46504c;
    --charcoal: #1f2825;
    --charcoal-2: #29332f;
    --warm: #f4efe7;
    --warm-2: #ebe2d5;
    --white: #fff;
    --oak: #c68c5a;
    --oak-dark: #a86d3e;
    --green: #547064;
    --line: rgba(29, 37, 34, .13);
    --shadow: 0 24px 70px rgba(29, 37, 34, .12);
    --font-display: "DM Serif Display", Georgia, serif;
    --font-sans: "Manrope", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -.025em;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: -100px;
    left: 1rem;
    padding: .65rem 1rem;
    color: var(--white);
    background: var(--charcoal);
}

.skip-link:focus {
    top: 1rem;
}

.section-pad {
    padding: 7rem 0;
}

.bg-warm {
    background: var(--warm);
}

.bg-charcoal {
    color: rgba(255, 255, 255, .72);
    background: var(--charcoal);
}

.eyebrow,
.small-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--oak-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #e9ba8f;
}

.section-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

.section-heading {
    max-width: 710px;
}

.section-heading > p,
.section-side-copy {
    color: var(--ink-soft);
}

.section-side-copy {
    max-width: 460px;
}

.lead-copy {
    color: var(--ink-soft);
    font-size: 1.18rem;
    line-height: 1.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 48px;
    padding: .72rem 1.4rem;
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sm {
    min-height: 42px;
    padding: .55rem 1rem;
    font-size: .7rem;
}

.btn-lg {
    min-height: 54px;
    padding: .85rem 1.75rem;
}

.btn-brand {
    color: var(--white);
    border-color: var(--oak);
    background: var(--oak);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--white);
    border-color: var(--oak-dark);
    background: var(--oak-dark);
    box-shadow: 0 12px 30px rgba(168, 109, 62, .25);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .65);
}

.btn-outline-light:hover {
    color: var(--ink);
}

.btn-dark {
    border-color: var(--charcoal);
    background: var(--charcoal);
}

.btn-outline-dark {
    border-color: var(--charcoal);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--ink);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link i {
    transition: transform .2s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
}

.utility-bar {
    padding: .42rem 0;
    color: rgba(255, 255, 255, .74);
    background: var(--charcoal);
    font-size: .71rem;
    letter-spacing: .035em;
}

.utility-bar a {
    color: var(--white);
    text-decoration: none;
}

.navbar {
    min-height: 84px;
    padding: .75rem 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    transition: min-height .2s ease, box-shadow .2s ease;
}

.site-header.is-stuck .navbar {
    min-height: 70px;
    box-shadow: 0 12px 35px rgba(29, 37, 34, .08);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-lockup img {
    width: 150px;
    height: auto;
    display: block;
}

.navbar-nav {
    gap: .15rem;
}

.navbar .nav-link {
    position: relative;
    padding: .65rem .75rem !important;
    color: var(--ink);
    font-size: .75rem;
    font-weight: 600;
}

.navbar .nav-link::after {
    border: 0;
}

.navbar .nav-link.active::before {
    position: absolute;
    right: .75rem;
    bottom: .32rem;
    left: .75rem;
    height: 2px;
    content: "";
    background: var(--oak);
}

.navbar-toggler {
    display: grid;
    gap: 5px;
    padding: .5rem;
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
}

.dropdown-menu {
    min-width: 300px;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    box-shadow: var(--shadow);
}

.dropdown-item,
.dropdown-item-text {
    padding: .65rem .75rem;
    font-size: .8rem;
}

.dropdown-item:hover {
    background: var(--warm);
}

.dropdown-item-text {
    color: var(--ink-soft);
}

.dropdown-item-text small,
.product-menu-featured small {
    color: var(--oak-dark);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-menu-featured {
    display: flex;
    flex-direction: column;
    color: var(--ink);
    font-weight: 700;
}

.menu-all-link {
    font-weight: 700;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: .1rem;
    padding: .18rem;
    border: 1px solid var(--line);
    border-radius: 2px;
}

.language-switcher a {
    min-width: 31px;
    padding: .2rem .35rem;
    color: var(--ink-soft);
    font-size: .65rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.language-switcher a.active {
    color: var(--white);
    background: var(--charcoal);
}

/* Hero sections */
.home-hero {
    position: relative;
    min-height: min(820px, calc(100vh - 120px));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.home-hero-media,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-media {
    background: url("../images/hero-outdoor-living.webp") center / cover no-repeat;
    transform: scale(1.015);
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(13, 18, 16, .88) 0%, rgba(13, 18, 16, .58) 43%, rgba(13, 18, 16, .08) 78%);
}

.home-hero .container {
    padding-top: 7rem;
    padding-bottom: 9rem;
}

.home-hero h1 {
    max-width: 840px;
    color: var(--white);
    font-size: clamp(3.2rem, 6.2vw, 6.3rem);
}

.home-hero p {
    max-width: 710px;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-trust {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    background: rgba(18, 25, 22, .74);
    backdrop-filter: blur(14px);
}

.trust-item {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.6rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .025em;
}

.hero-trust > div:last-child .trust-item {
    border-right: 0;
}

.trust-item i {
    color: #e9ba8f;
    font-size: 1.35rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: var(--warm);
}

.page-hero::after {
    position: absolute;
    top: -14rem;
    right: -9rem;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(198, 140, 90, .25);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 5rem rgba(198, 140, 90, .04);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero p {
    max-width: 720px;
    margin: 1.4rem 0 0;
    color: var(--ink-soft);
    font-size: 1.16rem;
}

.page-hero-image {
    color: var(--white);
    background: var(--charcoal);
}

.page-hero-image::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(16, 22, 19, .92), rgba(16, 22, 19, .6) 52%, rgba(16, 22, 19, .22)), var(--hero-image) center / cover;
}

.page-hero-image::after {
    display: none;
}

.page-hero-image h1 {
    color: var(--white);
}

.page-hero-image p {
    color: rgba(255, 255, 255, .78);
}

/* Core cards and media */
.intro-section {
    border-bottom: 1px solid var(--line);
}

.benefit-card {
    padding: 2.25rem;
    border: 1px solid rgba(29, 37, 34, .1);
    background: rgba(255, 255, 255, .72);
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(29, 37, 34, .08);
}

.icon-disc {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1.5rem;
    color: var(--oak-dark);
    border-radius: 50%;
    background: var(--warm-2);
    font-size: 1.25rem;
}

.benefit-card h3,
.value-card h3,
.coming-card h3,
.resource-card h2 {
    font-size: 1.45rem;
}

.benefit-card p,
.value-card p,
.coming-card p,
.resource-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .9rem;
}

.colour-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.colour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.colour-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.colour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.colour-card:hover .colour-card-image img {
    transform: scale(1.025);
}

.colour-card-body {
    padding: 2rem;
}

.colour-card h3 {
    margin: 0;
    font-size: 1.8rem;
}

.colour-card p {
    color: var(--ink-soft);
}

.colour-swatch {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: 0 0 0 1px var(--line);
}

.trade-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 650px;
    background: var(--charcoal);
}

.trade-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trade-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 7rem);
    color: rgba(255, 255, 255, .76);
}

.trade-split-content h2 {
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.feature-panel {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
    padding: 3rem;
}

.feature-panel > i {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 4rem;
    opacity: .17;
}

.feature-panel h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.feature-panel-green {
    color: rgba(255, 255, 255, .75);
    background: var(--green);
}

.feature-panel-green h2 {
    color: var(--white);
}

.feature-panel-light {
    background: var(--warm);
}

.faq-accordion .accordion-item {
    border-color: var(--line);
    background: transparent;
}

.faq-accordion .accordion-button {
    padding: 1.5rem 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--oak-dark);
}

.faq-accordion .accordion-body {
    padding: 0 2rem 1.5rem 0;
    color: var(--ink-soft);
}

.contact-band {
    padding: 5rem 0;
    color: var(--white);
    background: var(--charcoal);
}

.contact-band h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.content-image {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.value-card {
    padding: 2rem 1.5rem;
    border-top: 2px solid var(--oak);
    background: var(--white);
}

.value-card > span {
    color: var(--oak-dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}

.roadmap-item > span {
    color: var(--oak-dark);
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.roadmap-item h3 {
    font-size: 1.45rem;
}

.roadmap-item p {
    margin: 0;
    color: var(--ink-soft);
}

.cta-panel-wrap {
    padding: 0 0 7rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem;
    color: var(--white);
    background: var(--green);
}

.cta-panel h2 {
    max-width: 780px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

/* Products */
.category-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 570px;
    background: var(--warm);
}

.category-feature + .category-feature {
    margin-top: 2rem;
}

.category-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-feature-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem);
}

.category-feature-content h2 {
    font-size: clamp(2.7rem, 4.5vw, 4.5rem);
}

.status-pill,
.region-badge {
    padding: .35rem .65rem;
    border-radius: 100px;
    color: #355044;
    background: #dce7e0;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-feature-content .status-pill {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.coming-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.7rem;
    border: 1px solid var(--line);
    background: var(--warm);
}

.coming-card-icon {
    margin-bottom: auto;
    color: var(--oak-dark);
    font-size: 1.6rem;
}

.product-subnav {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
}

.product-subnav a {
    flex: 0 0 auto;
    padding: 1rem 0;
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-section {
    scroll-margin-top: 80px;
}

.colour-note {
    margin: 2rem 0 0;
    color: var(--ink-soft);
    font-size: .78rem;
}

.benefit-line {
    display: flex;
    gap: 1.1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.benefit-line > i {
    color: var(--oak-dark);
    font-size: 1.3rem;
}

.benefit-line h3 {
    font-size: 1.3rem;
}

.benefit-line p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .88rem;
}

.spec-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
}

.spec-table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255, 255, 255, .78);
    --bs-table-border-color: rgba(255, 255, 255, .12);
}

.spec-table th,
.spec-table td {
    padding: 1.15rem 1.4rem;
}

.spec-table th {
    width: 34%;
    color: var(--white);
    font-size: .76rem;
}

.info-card {
    padding: 3.5rem;
    border: 1px solid var(--line);
}

.info-card > i {
    display: block;
    margin-bottom: 2rem;
    color: var(--oak-dark);
    font-size: 2.4rem;
}

.info-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.info-card-accent {
    background: var(--warm);
}

/* Warranty and resources */
.warranty-product-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
}

.warranty-product-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    background: var(--warm);
}

.warranty-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.warranty-product-card:hover .warranty-product-image img {
    transform: scale(1.025);
}

.warranty-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
}

.warranty-product-content h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.warranty-product-content > p {
    margin: 1.5rem 0;
    color: var(--ink-soft);
}

.warranty-product-content > .btn {
    margin-top: auto;
}

.warranty-product-terms {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.warranty-product-terms > div {
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.warranty-product-terms > div + div {
    padding-left: 1.25rem;
    border-left: 1px solid var(--line);
}

.warranty-product-terms span {
    display: block;
    color: var(--oak-dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.warranty-product-terms strong {
    display: block;
    margin-top: .35rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
}

.warranty-governing-note {
    margin: 2rem 0 0;
    padding: 1.25rem 1.5rem;
    color: var(--ink-soft);
    border-left: 3px solid var(--oak);
    background: var(--warm);
    font-size: .82rem;
}

.warranty-summary {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.warranty-summary article {
    min-height: 205px;
    height: 100%;
    padding: 2rem;
    border-right: 1px solid var(--line);
}

.warranty-summary .row > div:last-child article {
    border-right: 0;
}

.warranty-summary article > span {
    display: block;
    margin-bottom: .8rem;
    color: var(--oak-dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.warranty-summary article > strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
}

.warranty-summary article > p {
    margin: .8rem 0 0;
    color: var(--ink-soft);
    font-size: .78rem;
}

.document-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-left: 3px solid var(--oak);
    background: var(--warm);
}

.document-notice > i {
    color: var(--oak-dark);
    font-size: 1.5rem;
}

.document-notice p {
    margin: .25rem 0 0;
    color: var(--ink-soft);
}

.warranty-sections {
    margin-top: 3rem;
}

.warranty-sections article {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.warranty-sections article > span {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--oak-dark);
    background: var(--warm);
}

.warranty-sections h3 {
    font-size: 1.35rem;
}

.warranty-sections p {
    margin: 0;
    color: var(--ink-soft);
}

.download-card {
    top: 100px;
    padding: 2.75rem;
    color: rgba(255, 255, 255, .72);
    background: var(--charcoal);
}

.download-card > i {
    color: #e9ba8f;
    font-size: 3rem;
}

.download-card h2 {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.download-card small {
    display: block;
    margin-top: 1.3rem;
    color: rgba(255, 255, 255, .52);
}

.warranty-document-meta {
    margin: 1.6rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.warranty-document-meta > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: .73rem;
}

.warranty-document-meta dt {
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.warranty-document-meta dd {
    margin: 0;
    color: var(--white);
    font-weight: 700;
}

.warranty-detail-card {
    padding: 2.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
}

.warranty-detail-card > i {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--oak-dark);
    font-size: 2rem;
}

.warranty-detail-card h3,
.warranty-condition h3,
.claim-document-card h3 {
    font-size: 1.55rem;
}

.warranty-detail-card p,
.warranty-condition p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .88rem;
}

.warranty-table-wrap {
    margin-top: 2rem;
    border: 1px solid var(--line);
}

.warranty-table {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--line);
}

.warranty-table th,
.warranty-table td {
    padding: .85rem 1.15rem;
}

.warranty-table th {
    color: var(--white);
    background: var(--charcoal);
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.warranty-table td:last-child {
    color: var(--oak-dark);
    font-weight: 700;
}

.warranty-condition {
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
}

.warranty-condition:first-child {
    padding-top: 0;
    border-top: 0;
}

.warranty-condition > i {
    display: block;
    margin-bottom: 1rem;
    color: var(--oak-dark);
    font-size: 1.75rem;
}

.claim-steps {
    margin: 2.5rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: warranty-step;
}

.claim-steps li {
    position: relative;
    padding: 0 0 1.6rem 3.4rem;
    counter-increment: warranty-step;
}

.claim-steps li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.3rem;
    height: 2.3rem;
    display: grid;
    place-items: center;
    content: counter(warranty-step);
    color: var(--charcoal);
    border-radius: 50%;
    background: #e9ba8f;
    font-size: .72rem;
    font-weight: 700;
}

.claim-steps li > span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.claim-steps li > p {
    margin: .35rem 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: .84rem;
}

.stain-claim-note {
    padding: 1.4rem;
    border-left: 3px solid #e9ba8f;
    background: rgba(255, 255, 255, .06);
}

.stain-claim-note strong {
    color: var(--white);
}

.stain-claim-note p {
    margin: .4rem 0 0;
    color: rgba(255, 255, 255, .56);
    font-size: .8rem;
}

.claim-document-card {
    padding: 2.5rem;
    color: var(--ink-soft);
    background: var(--white);
}

.claim-document-card > i {
    color: var(--oak-dark);
    font-size: 2.2rem;
}

.claim-document-card h3 {
    margin-top: 1rem;
}

.claim-document-card ul {
    display: grid;
    gap: .75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.claim-document-card li {
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}

.exclusion-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.exclusion-list li {
    display: flex;
    gap: .85rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: .86rem;
}

.exclusion-list i {
    flex: 0 0 auto;
    color: var(--oak-dark);
    font-size: 1.2rem;
}

.registration-note {
    margin-top: 2rem;
    padding: 1.3rem;
    border-left: 3px solid var(--oak);
    background: var(--warm);
    color: var(--ink-soft);
    font-size: .8rem;
}

.resource-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.3rem;
    border: 1px solid var(--line);
}

.resource-icon {
    margin-bottom: auto;
    color: var(--oak-dark);
    font-size: 2rem;
}

.resource-card .text-link,
.resource-pending {
    margin-top: 1.4rem;
}

.resource-pending {
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* Distributor map */
.map-shell {
    padding: .75rem;
    background: var(--warm);
}

.distributor-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #dce1dc;
}

.map-fallback {
    position: absolute;
    z-index: 900;
    inset: 0;
    background: linear-gradient(135deg, #dfe4df, #cbd4cd);
}

.map-fallback-grid {
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image: linear-gradient(rgba(31, 40, 37, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 40, 37, .16) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: rotate(-7deg) scale(1.2);
}

.map-region {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    color: var(--white);
    border-radius: 100px;
    background: var(--charcoal);
    box-shadow: 0 10px 25px rgba(31, 40, 37, .2);
    font-size: .75rem;
    font-weight: 700;
}

.map-region i {
    color: #e9ba8f;
}

.map-region-quebec {
    top: 38%;
    right: 25%;
}

.map-region-ontario {
    bottom: 28%;
    left: 33%;
}

.map-fallback-copy {
    position: absolute;
    z-index: 2;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 330px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .1rem 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
}

.map-fallback-copy i {
    grid-row: 1 / 3;
    color: var(--oak-dark);
    font-size: 1.5rem;
}

.map-fallback-copy span {
    color: var(--ink-soft);
    font-size: .75rem;
}

.distributor-map.is-live {
    background: #dce1dc;
}

.distributor-map .leaflet-control-zoom a {
    color: var(--ink);
}

.distributor-map .leaflet-control-attribution {
    font-family: var(--font-sans);
    font-size: .64rem;
}

.distributor-map-marker {
    border: 0;
    background: transparent;
}

.distributor-map-marker span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    background: var(--charcoal);
    box-shadow: 0 8px 20px rgba(31, 40, 37, .32);
    font-family: var(--font-sans);
    font-size: .65rem;
    font-weight: 700;
    transform: rotate(-45deg);
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
}

.distributor-map-marker b {
    display: block;
    font-weight: 700;
    letter-spacing: -.05em;
    transform: rotate(45deg);
}

.distributor-map-popup {
    min-width: 190px;
    display: grid;
    gap: .35rem;
    font-family: var(--font-sans);
}

.distributor-map-popup strong,
.distributor-map-popup span,
.distributor-map-popup a {
    display: block;
}

.distributor-map-popup strong {
    color: var(--ink);
    font-size: .85rem;
}

.distributor-map-popup span {
    color: var(--ink-soft);
    font-size: .75rem;
    line-height: 1.5;
}

.distributor-map-popup a {
    color: var(--oak-dark);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.distributor-card {
    padding: 2.4rem;
    border: 1px solid var(--line);
}

.distributor-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.distributor-card-top > i {
    color: var(--oak-dark);
    font-size: 1.6rem;
}

.distributor-card h2 {
    font-size: 2rem;
}

.distributor-city {
    color: var(--oak-dark);
    font-size: .78rem;
    font-weight: 700;
}

.distributor-card address,
.distributor-phone {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--ink-soft);
    font-size: .88rem;
    font-style: normal;
    text-decoration: none;
}

/* Forms */
.form-side {
    position: sticky;
    top: 110px;
}

.check-list {
    display: grid;
    gap: .9rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: .7rem;
    color: var(--ink-soft);
    font-size: .9rem;
}

.check-list i {
    color: var(--oak-dark);
}

.form-card {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--warm);
}

.form-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.form-card > div > small {
    color: var(--ink-soft);
    font-size: .7rem;
}

.form-label {
    margin-bottom: .55rem;
    font-size: .73rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 52px;
    padding: .75rem 1rem;
    border-color: rgba(29, 37, 34, .2);
    border-radius: 2px;
    background-color: rgba(255, 255, 255, .78);
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--oak);
    box-shadow: 0 0 0 .2rem rgba(198, 140, 90, .14);
}

.form-check-input:checked {
    border-color: var(--oak-dark);
    background-color: var(--oak-dark);
}

.form-privacy {
    display: inline-block;
    margin: 0 0 0 1rem;
    color: var(--ink-soft);
    font-size: .7rem;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 0;
    border-radius: 2px;
}

.form-status i {
    font-size: 1.3rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail > i {
    color: var(--oak-dark);
    font-size: 1.2rem;
}

.contact-detail strong,
.contact-detail span,
.contact-detail a {
    display: block;
}

.contact-detail strong {
    font-size: .72rem;
    text-transform: uppercase;
}

.contact-detail span,
.contact-detail a {
    color: var(--ink-soft);
    font-size: .88rem;
    text-decoration: none;
}

.buy-question {
    margin-top: 2rem;
    padding: 1.6rem;
    background: var(--warm);
}

.buy-question h3 {
    font-size: 1.35rem;
}

.buy-question p {
    color: var(--ink-soft);
    font-size: .85rem;
}

/* Error page */
.error-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 7rem 0;
    background: var(--warm);
}

.error-code {
    display: block;
    margin-bottom: -2.5rem;
    color: rgba(198, 140, 90, .16);
    font-family: var(--font-display);
    font-size: clamp(8rem, 22vw, 18rem);
    line-height: .72;
}

.error-page h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.error-page p {
    max-width: 620px;
    margin: 1.5rem auto 2rem;
    color: var(--ink-soft);
}

/* Footer */
.site-footer {
    padding-top: 6rem;
    color: rgba(255, 255, 255, .58);
    background: #151b19;
}

.brand-lockup-light {
    color: var(--white);
}

.brand-lockup-light img {
    width: 190px;
    filter: brightness(0) invert(1);
}

.footer-intro {
    max-width: 390px;
    margin-top: 1.5rem;
}

.footer-location {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
}

.footer-main h2 {
    margin-bottom: 1.4rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-main a,
.footer-main .col-lg-2 > span {
    display: block;
    margin-bottom: .65rem;
    color: rgba(255, 255, 255, .58);
    font-size: .8rem;
    text-decoration: none;
}

.footer-main a:hover {
    color: var(--white);
}

.language-switcher-footer {
    display: inline-flex;
    border-color: rgba(255, 255, 255, .2);
}

.language-switcher-footer a {
    margin: 0 !important;
    color: rgba(255, 255, 255, .65);
}

.language-switcher-footer a.active {
    color: var(--ink);
    background: var(--white);
}

.footer-bottom {
    margin-top: 5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .7rem;
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .65s ease, transform .65s ease;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 1200px) {
    .site-header {
        position: sticky;
        top: -34px;
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        position: fixed;
        inset: 0;
        z-index: -1;
        padding: 7rem 1.5rem 2rem;
        overflow-y: auto;
        background: var(--white);
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        z-index: -1;
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 0;
    }

    .navbar .nav-link {
        padding: .8rem 0 !important;
        border-bottom: 1px solid var(--line);
        font-family: var(--font-display);
        font-size: 1.5rem;
    }

    .navbar .nav-link.active::before {
        display: none;
    }

    .dropdown-menu {
        border: 0;
        box-shadow: none;
    }

    .header-actions {
        margin-top: 1.5rem;
    }

    .trade-split {
        grid-template-columns: 1fr;
    }

    .trade-split-image {
        min-height: 520px;
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 5rem 0;
    }

    .home-hero {
        min-height: 740px;
    }

    .home-hero .container {
        padding-top: 5rem;
        padding-bottom: 11rem;
    }

    .hero-trust > div:not(:last-child) .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .trust-item {
        min-height: 58px;
        padding: .8rem 1rem;
        border-right: 0;
    }

    .trade-split-content {
        min-height: 520px;
    }

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

    .category-feature-image {
        min-height: 430px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 3rem;
    }

    .form-side {
        position: static;
    }

    .warranty-summary article {
        border-bottom: 1px solid var(--line);
    }

    .warranty-summary .row > div:nth-child(2n) article {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .utility-bar {
        display: none;
    }

    .section-pad {
        padding: 4rem 0;
    }

    .home-hero {
        min-height: 760px;
    }

    .home-hero-media {
        background-position: 64% center;
    }

    .home-hero-overlay {
        background: linear-gradient(90deg, rgba(13, 18, 16, .92), rgba(13, 18, 16, .65));
    }

    .home-hero h1,
    .page-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.3rem);
    }

    .home-hero .container {
        padding-bottom: 15rem;
    }

    .hero-trust {
        right: 0;
        left: 0;
    }

    .page-hero {
        padding: 5.5rem 0;
    }

    .warranty-product-content {
        padding: 2rem 1.5rem;
    }

    .warranty-product-terms > div {
        padding-right: .75rem;
    }

    .warranty-product-terms > div + div {
        padding-left: .75rem;
    }

    .warranty-product-terms strong {
        font-size: 1.5rem;
    }

    .trade-split-image {
        min-height: 330px;
    }

    .trade-split-content {
        min-height: 450px;
        padding: 3rem 1.5rem;
    }

    .feature-panel {
        min-height: 410px;
        padding: 2rem;
    }

    .content-image {
        min-height: 340px;
    }

    .category-feature-image {
        min-height: 310px;
    }

    .category-feature-content {
        padding: 3rem 1.5rem;
    }

    .category-feature-content .status-pill {
        position: static;
        margin-bottom: 1.2rem;
    }

    .product-subnav {
        top: 0;
    }

    .info-card,
    .form-card,
    .download-card {
        padding: 2rem;
    }

    .warranty-summary article {
        min-height: 0;
        border-right: 0;
    }

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }

    .spec-table th {
        padding-bottom: .2rem;
        border-bottom: 0;
    }

    .spec-table td {
        padding-top: .2rem;
    }

    .distributor-map {
        min-height: 420px;
    }

    .map-region-quebec {
        top: 27%;
        right: 8%;
    }

    .map-region-ontario {
        bottom: 42%;
        left: 8%;
    }

    .map-fallback-copy {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .form-privacy {
        display: block;
        margin: 1rem 0 0;
    }

    .cta-panel {
        padding: 2.3rem 1.5rem;
    }

    .cta-panel-wrap {
        padding-bottom: 4rem;
    }
}
