:root {
    --bg: #f3f0ec;
    --paper: #fffdfa;
    --ink: #101114;
    --muted: #68635e;
    --soft: #a7a09a;
    --line: #ddd7d1;
    --line-soft: #ebe6e1;
    --accent: #8b3d2b;
    --accent-dark: #76311f;
    --success: #315f45;
    --shadow: 0 16px 42px rgba(20, 18, 16, .06);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

input,
textarea,
button {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 46px;
    padding: 6px clamp(18px, 3.2vw, 46px);
    background: rgba(243, 240, 236, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand,
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.brand img {
    display: block;
    width: auto;
    height: 38px;
    filter: invert(1);
}

.main-nav a {
    color: var(--muted);
    font-size: 12px;
}

.account-link {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
}

.account-link img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

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

.language-switcher a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 4px;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    color: var(--muted);
    opacity: .55;
}

.language-switcher a.is-active {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
    opacity: 1;
}

.language-switcher span {
    font-size: 14px;
    line-height: 1;
}

.language-switcher small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.pill {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 4px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
}

main {
    min-height: calc(100vh - 150px);
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: clamp(38px, 5.5vw, 72px) clamp(18px, 3.2vw, 46px) clamp(22px, 3vw, 38px);
}

.hero-copy h1,
.detail-hero h1,
.section h1 {
    max-width: 90%;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 400;
    line-height: 1;
}

.hero-copy p:not(.kicker),
.detail-hero p:not(.kicker) {
    max-width: 510px;
    color: var(--muted);
    font-size: 15px;
}

.landing-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: min(720px, calc(100vh - 74px));
    padding: clamp(42px, 6vw, 82px) clamp(18px, 4vw, 58px);
    overflow: hidden;
    background: #0c0d0f;
    color: #fffdfa;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(12, 13, 15, .92), rgba(12, 13, 15, 0));
    z-index: 1;
    pointer-events: none;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 9, 11, .72), rgba(8, 9, 11, .34) 46%, rgba(8, 9, 11, .08));
    z-index: 1;
    pointer-events: none;
}

.landing-hero-media {
    position: absolute;
    inset: 0;
    opacity: 1;
    z-index: 0;
}

.landing-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.landing-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.landing-hero-copy h1 {
    max-width: 860px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 4vw, 60px);
    font-weight: 400;
    line-height: .95;
}

.landing-hero-copy p:not(.kicker) {
    max-width: 540px;
    margin: 22px 0 0;
    color: rgba(255, 253, 250, .78);
    font-size: clamp(13px, 1vw, 15px);
}

.landing-hero .kicker {
    color: #f0d5c6;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button.light {
    border-color: rgba(255, 253, 250, .72);
    color: #fffdfa;
}

.sub-hero {
    min-height: min(620px, calc(100vh - 74px));
}

.sub-hero .landing-hero-media {
    display: grid;
    place-items: center end;
    padding-right: clamp(16px, 11vw, 180px);
    opacity: .42;
}

.sub-hero .landing-hero-media img {
    width: min(36vw, 340px);
    height: auto;
    max-width: 78%;
    max-height: 88%;
    object-fit: contain;
}

.goodies-hero .landing-hero-media img {
    filter: invert(1) drop-shadow(0 28px 70px rgba(255, 255, 255, .08));
}

.fire-hero {
    background: #11100e;
}

.commerce-section {
    background: #f7f7f5;
}

.commerce-grid {
    display: grid;
    grid-template-columns: 1.18fr .91fr .91fr;
    gap: 14px;
}

.commerce-card {
    position: relative;
    display: grid;
    min-height: clamp(360px, 35vw, 520px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    isolation: isolate;
}

.commerce-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 17, 20, .72), rgba(16, 17, 20, .06) 62%);
    z-index: -1;
}

.commerce-card.dark {
    background: #161719;
    color: #fffdfa;
}

.commerce-card.is-featured {
    background: #e9e6e2;
}

.commerce-visual {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 34px;
    z-index: -2;
}

.commerce-visual img {
    display: block;
    width: auto;
    max-width: 72%;
    max-height: 74%;
    object-fit: contain;
    transform-origin: center;
    transition: transform .35s ease;
}

.commerce-card:hover .commerce-visual img {
    transform: scale(1.045) rotate(-1.2deg);
}

.logo-visual img {
    max-width: 58%;
    filter: invert(1);
    opacity: .9;
}

.commerce-card.dark .commerce-visual img {
    filter: invert(1);
}

.photo-card .commerce-visual {
    padding: 0;
}

.photo-card .commerce-visual img,
.commerce-card.dark.photo-card .commerce-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.commerce-content {
    display: grid;
    align-content: end;
    gap: 8px;
    min-height: 100%;
    padding: clamp(20px, 3vw, 34px);
    color: #fffdfa;
}

.commerce-content small {
    color: rgba(255, 253, 250, .68);
    font-size: 12px;
}

.commerce-content strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 2.2vw, 31px);
    font-weight: 400;
    line-height: 1;
}

.commerce-content span {
    max-width: 420px;
    color: rgba(255, 253, 250, .78);
}

.fire-listing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    min-height: 520px;
    background: #11100e;
    color: #fffdfa;
}

.fire-listing-media {
    min-height: 520px;
}

.fire-listing-media img,
.fire-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fire-listing-copy {
    display: grid;
    align-content: end;
    padding: clamp(28px, 4vw, 56px);
}

.fire-listing-copy h1,
.fire-detail-copy h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4.6vw, 60px);
    font-weight: 400;
    line-height: .96;
}

.fire-listing-copy p:not(.kicker),
.fire-detail-copy p {
    max-width: 520px;
    color: rgba(255, 253, 250, .76);
}

.fire-catalog {
    background: #f7f7f5;
}

.fire-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fire-product-card {
    display: grid;
    overflow: hidden;
    min-height: 440px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.fire-product-image {
    display: block;
    min-height: 300px;
    overflow: hidden;
}

.fire-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform .25s ease;
}

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

.fire-product-meta {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.fire-product-meta small {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fire-product-meta strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 400;
    line-height: 1;
}

.fire-product-meta span {
    color: var(--muted);
}

.section-intro {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
}

.goodies-catalog {
    background: #f7f7f5;
}

.goodie-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.goodie-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.goodie-image {
    position: relative;
    display: block;
    height: clamp(190px, 18vw, 245px);
    min-height: 0;
    overflow: hidden;
    background: #ebe8e3;
    padding: 14px;
}

.goodie-image img {
    display: block;
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: contain;
    transition: transform .25s ease;
}

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

.goodie-meta {
    display: grid;
    gap: 9px;
    align-content: start;
    padding: 18px;
}

.goodie-meta small {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.goodie-meta h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.2vw, 31px);
    font-weight: 400;
    line-height: 1;
}

.goodie-meta p {
    margin: 0;
    color: var(--muted);
}

.goodie-meta strong {
    font-size: 18px;
}

.inline-buy-form {
    margin-top: 8px;
}

.inline-buy-form .button {
    width: 100%;
}

.account-page {
    background: #f7f7f5;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.account-login-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
    gap: 22px;
    align-items: start;
    max-width: 980px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.account-login-panel h2 {
    max-width: 520px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1;
}

.account-login-panel p:not(.kicker) {
    max-width: 520px;
    color: var(--muted);
}

.account-login-form {
    display: grid;
    gap: 14px;
}

.account-login-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.account-login-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    padding: 12px 13px;
}

.account-logout {
    align-self: start;
}

.account-card,
.order-row {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.account-card {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 260px;
    padding: 20px;
}

.account-card small,
.order-row small {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.account-card h2,
.account-orders h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 400;
    line-height: 1;
}

.account-card p,
.account-note {
    margin: 0;
    color: var(--muted);
}

.account-card address {
    display: grid;
    gap: 4px;
    color: var(--muted);
    font-style: normal;
}

.account-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.account-list div {
    display: grid;
    gap: 2px;
}

.account-list dt {
    color: var(--soft);
    font-size: 12px;
}

.account-list dd {
    margin: 0;
}

.account-orders {
    margin-top: 28px;
}

.order-list {
    display: grid;
    gap: 10px;
}

.order-row {
    overflow: hidden;
}

.order-row summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.order-row summary::-webkit-details-marker {
    display: none;
}

.order-row summary > span {
    display: grid;
    gap: 4px;
}

.order-row summary strong {
    color: var(--ink);
    font-size: 18px;
}

.order-row summary b {
    color: var(--ink);
    font-size: 18px;
}

.order-row em,
.order-row span {
    color: var(--muted);
    font-style: normal;
}

.order-row summary > span:last-child {
    justify-items: end;
}

.order-detail {
    display: grid;
    gap: 0;
    padding: 0 20px 18px;
}

.order-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line-soft);
}

.order-item > div {
    display: grid;
    gap: 4px;
}

.order-item > div:last-child {
    justify-items: end;
}

.order-unavailable {
    color: var(--accent);
    font-size: 13px;
}

.fire-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    min-height: 620px;
    background: #11100e;
    color: #fffdfa;
}

.fire-detail-media {
    min-height: 620px;
}

.fire-detail-copy {
    display: grid;
    align-content: center;
    padding: clamp(30px, 5vw, 72px);
}

.fire-specs {
    display: grid;
    gap: 0;
    margin: 26px 0 0;
    border-top: 1px solid rgba(255, 253, 250, .22);
}

.fire-specs div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 253, 250, .22);
}

.fire-specs dt {
    color: rgba(255, 253, 250, .62);
}

.fire-specs dd {
    margin: 0;
    font-weight: 700;
}

.fire-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.fire-feature {
    min-height: 120px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 250, .58);
    color: var(--muted);
}

.kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-panel {
    display: flex;
    width: min(100%, 620px);
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    list-style: none;
}

.hero-panel li {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    padding: 12px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
}

.hero-panel li:last-child {
    border-right: 0;
    padding-left: 16px;
}

.hero-panel li + li {
    padding-left: 16px;
}

.hero-panel span {
    color: var(--soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.section,
.detail-hero,
.product-layout,
.profile-entry {
    padding: clamp(26px, 3.2vw, 42px) clamp(18px, 3.2vw, 46px);
}

.profile-entry {
    display: grid;
    gap: clamp(26px, 4vw, 46px);
    max-width: 100%;
}

.profile-intro h1 {
    width: 90%;
    max-width: 90%;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 400;
    line-height: 1;
}

.profile-intro p:not(.kicker) {
    max-width: 560px;
    color: var(--muted);
    font-size: 15px;
}

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

.profile-card {
    display: grid;
    gap: 16px;
    align-content: start;
    min-height: 280px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 253, 250, .58);
}

.profile-card h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 400;
    line-height: 1;
}

.profile-card.is-active {
    border-color: var(--ink);
    background: var(--paper);
}

.profile-card p {
    margin: 0;
    color: var(--muted);
}

.profile-card label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.profile-card input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    padding: 11px 13px;
}

.profile-number {
    color: var(--soft);
    font-size: 12px;
}

.profile-strip {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
    padding: clamp(24px, 3vw, 38px) clamp(18px, 3.2vw, 46px);
    border-bottom: 1px solid var(--line);
}

.profile-strip-intro h1 {
    max-width: 560px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    line-height: 1;
}

.profile-strip-intro p:not(.kicker) {
    max-width: 480px;
    color: var(--muted);
}

.profile-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-grid.compact .profile-card {
    min-height: 0;
    padding: 16px;
}

.profile-grid.compact .profile-card p {
    font-size: 13px;
}

.sav-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(18px, 3.2vw, 46px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 250, .58);
}

.sav-status-bar div {
    display: grid;
    gap: 4px;
}

.sav-status-bar .kicker {
    margin: 0;
}

.sav-status-bar strong {
    font-size: 18px;
}

.sav-status-bar span {
    color: var(--muted);
}

.sav-status-bar.warning {
    background: rgba(142, 63, 45, .07);
}

.profile-reset button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.section h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2.8vw, 33px);
    font-weight: 400;
    line-height: 1;
}

.search-box {
    display: grid;
    gap: 8px;
    min-width: min(320px, 100%);
    color: var(--muted);
    font-size: 13px;
}

.search-box input,
.checkout-form input,
.checkout-form textarea,
.buy-form input,
.cart-line input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
    padding: 11px 13px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.model-card,
.zone-card,
.part-row,
.empty-state,
.flash,
.cart-table,
.checkout-form {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 253, 250, .46);
}

.model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-items: center;
    min-height: 315px;
    padding: 16px 14px 15px;
    text-align: center;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.model-card:hover,
.zone-card:hover,
.part-row:hover {
    transform: translateY(-2px);
    border-color: var(--ink);
    background: var(--paper);
}

.model-image-wrap {
    display: grid;
    place-items: end center;
    width: 100%;
    height: 214px;
    margin-bottom: 10px;
}

.model-image-wrap img {
    display: block;
    width: auto;
    max-width: min(82%, 155px);
    max-height: 205px;
    object-fit: contain;
}

.model-meta {
    display: grid;
    gap: 2px;
    margin-top: auto;
}

.model-card strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.model-card small,
.muted,
.part-row small,
.zone-card small {
    color: var(--muted);
}

.detail-hero {
    border-bottom: 1px solid var(--line);
}

.detail-hero.compact h1 {
    font-size: clamp(28px, 6vw, 62px);
}

.back-link {
    display: inline-block;
    margin-bottom: 26px;
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.zone-card {
    display: grid;
    gap: 10px;
    min-height: 180px;
    padding: 18px;
}

.zone-icon {
    width: 56px;
    height: 56px;
    border: 3px solid var(--ink);
    border-radius: 50%;
}

.part-list {
    display: grid;
    gap: 14px;
}

.part-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px;
}

.part-row h2 {
    margin: 4px 0 8px;
    font-size: clamp(18px, 1.8vw, 20px);
}

.part-buy {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.button.primary {
    background: var(--ink);
    color: var(--paper);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: center;
}

.product-visual {
    display: grid;
    place-items: center;
    min-height: 430px;
    border-right: 1px solid var(--line);
}

.part-placeholder {
    width: 170px;
    height: 170px;
    border: 18px solid var(--ink);
    border-radius: 50%;
}

.product-info h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 4.8vw, 52px);
    font-weight: 400;
    line-height: 1;
}

.specs {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.specs div,
.cart-line,
.cart-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.specs dt {
    color: var(--muted);
}

.specs dd {
    margin: 0;
    font-weight: 700;
}

.buy-form,
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.buy-form label {
    display: grid;
    gap: 8px;
    width: 130px;
    color: var(--muted);
    font-size: 13px;
}

.narrow {
    max-width: 760px;
    margin: 0 auto;
}

.cart-table,
.checkout-form,
.empty-state {
    padding: 18px;
}

.cart-line {
    grid-template-columns: minmax(0, 1fr) 96px 130px;
    align-items: center;
}

.cart-total {
    font-size: 18px;
}

.checkout-form {
    display: grid;
    gap: 16px;
}

.checkout-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.checkout-form fieldset {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.checkout-form legend {
    padding: 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--ink);
}

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

.form-grid .full {
    grid-column: 1 / -1;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.check-line,
.payment-options label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-line input,
.payment-options input {
    width: auto;
    margin-top: 3px;
}

.payment-options {
    display: grid;
    gap: 10px;
}

.disclaimer-line {
    color: var(--ink);
}

.flash {
    margin: 16px clamp(18px, 3.2vw, 46px) 0;
    padding: 12px 14px;
    border-color: rgba(49, 95, 69, .35);
    color: var(--success);
}

.site-footer {
    padding: 24px clamp(18px, 3.2vw, 46px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    padding: 0 clamp(18px, 3.2vw, 46px);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.breadcrumb a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.breadcrumb strong {
    color: var(--ink);
    font-weight: 400;
}

.energy-selector {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.energy-selector > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 170px));
    gap: 12px;
}

.energy-selector h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2.8vw, 33px);
    font-weight: 400;
    line-height: 1;
}

.energy-selector a {
    display: grid;
    gap: 10px;
    place-items: center;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 250, .46);
    color: var(--ink);
    text-align: center;
}

.energy-selector img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.energy-selector a.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.energy-selector a.is-active img {
    filter: invert(1);
}

@media (max-width: 1280px) {
    .model-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .commerce-visual img {
        transition: none;
    }

    .commerce-card:hover .commerce-visual img {
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero,
    .product-layout {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        min-height: min(680px, calc(100vh - 74px));
        align-items: end;
    }

    .landing-hero-media {
        padding: 0;
        opacity: 1;
    }

    .landing-hero-media img {
        width: 100%;
        height: 100%;
    }

    .sub-hero .landing-hero-media {
        place-items: start end;
        padding: 24px 18px 0 0;
        opacity: .42;
    }

    .sub-hero .landing-hero-media img {
        width: min(52vw, 260px);
        height: auto;
    }

    .commerce-grid {
        grid-template-columns: 1fr;
    }

    .commerce-card {
        min-height: 320px;
    }

    .fire-listing-hero,
    .fire-detail-hero,
    .profile-strip {
        grid-template-columns: 1fr;
    }

    .sav-status-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .fire-listing-media,
    .fire-detail-media {
        min-height: 360px;
    }

    .fire-product-grid,
    .fire-feature-grid,
    .goodie-grid,
    .account-grid,
    .account-login-panel,
    .profile-grid.compact {
        grid-template-columns: 1fr;
    }

    .order-row summary,
    .order-item {
        grid-template-columns: 1fr;
    }

    .order-row summary > span:last-child,
    .order-item > div:last-child {
        justify-items: start;
    }

    .energy-selector > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .model-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .zone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-visual {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 680px) {
    .section-heading,
    .part-row,
    .cart-line {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .section-heading,
    .part-row {
        flex-direction: column;
    }

    .site-header {
        align-items: center;
        gap: 10px;
    }

    .brand img {
        height: 32px;
    }

    .main-nav {
        justify-content: flex-end;
        gap: 8px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(22px, 7.8vw, 38px);
    }

    .model-grid,
    .zone-grid {
        grid-template-columns: 1fr;
    }

    .model-card {
        min-height: 250px;
    }

    .model-image-wrap {
        height: 170px;
    }

    .model-image-wrap img {
        max-height: 164px;
    }

    .part-buy {
        justify-items: start;
    }

    .cart-line {
        display: grid;
        gap: 10px;
    }
}
