@font-face {
    font-family: "Borhn Serif";
    src: url("/assets/fonts/borhn-serif.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Borhn Sans";
    src: url("/assets/fonts/borhn-sans.ttf") format("truetype");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #10273e;
    --navy-deep: #10273e;
    --ivory: #eceae7;
    --paper: #f7f6f3;
    --white: #ffffff;
    --ink: #171717;
    --muted: #66717b;
    --line: rgba(23, 52, 81, 0.14);
    --gold: #a28c60;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow-sm: 0 12px 30px rgba(16, 39, 62, 0.08);
    --shadow-lg: 0 30px 80px rgba(16, 39, 62, 0.16);
    --page-width: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: "Borhn Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-loading {
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    color: white;
    background: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}
.site-loading-mark {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
}
.site-loading-mark img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.site-shell { min-height: 100vh; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy);
    color: white;
}
.header-inner {
    width: min(calc(100% - 32px), var(--page-width));
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) minmax(180px,230px) auto;
    align-items: center;
    gap: 28px;
}
.brand-link { display: inline-flex; align-items: center; }
.brand-logo { width: 154px; height: auto; object-fit: contain; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 4px; min-width:0; }
.nav-item { position:relative; display:flex; align-items:center; }
.nav-item.has-dropdown::after { content:""; position:absolute; left:-18px; right:-18px; top:100%; height:18px; }
.nav-dropdown-toggle { appearance:none; border:0; background:transparent; font:inherit; cursor:pointer; }
.product-mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    width: 100vw;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(23,52,81,.10);
    border-radius: 0;
    background: rgba(255,255,255,.99);
    color: var(--ink);
    box-shadow: 0 24px 58px rgba(16,39,62,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}
.nav-item:hover .product-mega-menu,
.nav-item:focus-within .product-mega-menu,
.nav-item.open .product-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.product-menu-inner {
    width: min(calc(100% - 64px), 1680px);
    margin: 0 auto;
    padding: 26px 0 24px;
}
.product-menu-grid {
    display: grid;
    grid-template-columns: repeat(var(--product-menu-columns,5), minmax(0,1fr));
    align-items: start;
    gap: 34px;
}
.product-menu-block {
    min-width: 0;
    padding: 0;
    background: transparent;
}
.product-menu-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--ivory);
}
.product-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
    transform-origin:center center;
}
.product-menu-image:hover img { transform: scale(1.025); }
.product-menu-heading {
    display: block;
    color: var(--ink);
    font-family: "Borhn Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}
.product-menu-heading:hover { color: var(--gold); }
.product-menu-sublinks {
    display: grid;
    gap: 13px;
    margin-top: 17px;
}
.product-menu-sublink {
    color: #33383d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}
.product-menu-sublink:hover { color: var(--gold); }
.product-menu-standalone .product-menu-heading { margin-bottom: 0; }
.product-menu-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid rgba(23,52,81,.13);
}
.product-menu-footer a {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}
.product-menu-footer a:hover { color: var(--gold); }

.portrait-menu-inner {
    width: min(calc(100% - 64px), 1680px);
    margin: 0 auto;
    padding: 26px 0 28px;
}
.portrait-menu-grid {
    display: grid;
    grid-template-columns: repeat(var(--portrait-menu-columns,5), minmax(0,1fr));
    gap: 18px;
}
.portrait-menu-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 22px;
    background: var(--navy);
    color: white;
    box-shadow: 0 12px 32px rgba(16,39,62,.12);
}
.portrait-menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    transform-origin:center center;
}
.portrait-menu-card:hover img { filter: brightness(1.035); }
.portrait-menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,18,30,.04) 28%, rgba(5,18,30,.82) 100%);
}
.portrait-menu-card-copy {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}
.portrait-menu-card-title { font-family:"Borhn Serif"; font-size:28px; line-height:1; }
.portrait-menu-placeholder {
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:rgba(255,255,255,.18);
    font-family:"Borhn Serif";
    font-size:90px;
}

.header-search-form { position:relative; width:100%; }
.header-search-icon { position:absolute; left:12px; top:50%; width:15px; height:15px; transform:translateY(-50%); opacity:.68; pointer-events:none; }
.header-search-input { width:100%; min-height:38px; padding:0 13px 0 36px; border:1px solid rgba(255,255,255,.16); border-radius:999px; background:rgba(255,255,255,.08); color:white; outline:none; font-size:12px; }
.header-search-input::placeholder { color:rgba(255,255,255,.52); }
.header-search-input:focus { background:rgba(255,255,255,.13); border-color:rgba(255,255,255,.38); box-shadow:0 0 0 3px rgba(255,255,255,.08); }
.nav-link {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    transition: .2s ease;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,.10); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.quote-pill, .primary-button, .secondary-button, .ghost-button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 15px;
    background: white;
    color: var(--navy);
    font-weight: 700;
    font-size: 12px;
}
.quote-count {
    min-width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 10px;
}
.mobile-menu-button { display:none; width:42px; height:42px; padding:0; border:1px solid rgba(255,255,255,.18); border-radius:50%; background:rgba(255,255,255,.08); color:white; cursor:pointer; place-items:center; }
.mobile-menu-icon { width:18px; height:14px; position:relative; display:block; border-top:2px solid currentColor; border-bottom:2px solid currentColor; }
.mobile-menu-icon:after { content:""; position:absolute; left:0; right:0; top:5px; border-top:2px solid currentColor; }
.mobile-nav-panel { display:none; padding:8px 16px 16px; border-top:1px solid rgba(255,255,255,.10); background:var(--navy); }
.mobile-nav-panel.open { display:grid; }
.mobile-nav-link { padding:14px 4px; border-bottom:1px solid rgba(255,255,255,.10); color:rgba(255,255,255,.86); font-size:15px; }
.mobile-nav-link:last-child { border-bottom:0; }

.page { overflow: clip; }
.container { width: min(calc(100% - 40px), var(--page-width)); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-tight { padding: clamp(50px, 6vw, 88px) 0; }
.section-dark { background: var(--navy); color: white; }
.section-ivory { background: var(--ivory); }
.section-white { background: white; }
.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.display-heading, .section-heading, .card-heading {
    margin: 0;
    white-space: pre-line;
    font-family: "Borhn Serif", Georgia, serif;
    font-weight: 300;
    letter-spacing: -.035em;
}
.display-heading { max-width: 900px; font-size: clamp(44px, 5.7vw, 78px); line-height: .96; }
.hero-heading { font-size:clamp(32px,var(--hero-heading-size,76px),140px); white-space:pre-line; }
.section-heading { max-width: 880px; font-size: clamp(38px, 5vw, 72px); line-height: 1; }
.card-heading { font-size: clamp(28px, 3vw, 44px); line-height: 1.02; }
.lede { max-width: 740px; margin: 26px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; color: rgba(255,255,255,.72); }
.body-copy { font-size: 16px; line-height: 1.7; color: var(--muted); }
.section-dark .body-copy { color: rgba(255,255,255,.7); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.primary-button, .secondary-button, .ghost-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 21px;
    font-weight: 800;
    font-size: 13px;
}
.primary-button { background: white; color: var(--navy); box-shadow: var(--shadow-sm); }
.primary-button.dark { background: var(--navy); color: white; }
.secondary-button { background: rgba(255,255,255,.10); color: white; border: 1px solid rgba(255,255,255,.18); }
.ghost-button { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.primary-button:hover, .secondary-button:hover, .ghost-button:hover, .quote-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.hero {
    min-height: min(860px, calc(100vh - 76px));
    position: relative;
    display: grid;
    align-items: center;
    background: var(--navy);
    color: white;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 34%),
        linear-gradient(180deg, transparent 45%, rgba(5,18,30,.36));
}
.hero.has-image { background-size: cover; background-position: center; }
.hero.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,39,62,.93) 0%, rgba(16,39,62,.78) 45%, rgba(16,39,62,.18) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(74px, 8vw, 112px) 0 clamp(68px, 7vw, 102px); }
.hero-mark { width: 76px; height: 76px; display: grid; place-items:center; margin-bottom: clamp(42px, 5vw, 72px); }
.hero-mark img { width: 76px; height: 76px; object-fit: contain; }
.hero .display-heading { max-width: 980px; }

.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); gap: clamp(40px, 8vw, 120px); align-items: end; }
.glass-card {
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px) saturate(130%);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
    border-radius: var(--radius-md);
}
.statement-card { padding: clamp(30px, 4vw, 54px); color: var(--ink); }
.statement-card p { margin: 22px 0 0; line-height: 1.65; color: #4f5962; }

.section-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 38px; }
.section-title-row .body-copy { max-width: 520px; margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.browse-card {
    min-height: 260px;
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 8px 30px rgba(16,39,62,.04);
    transition: .25s ease;
}
.browse-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(23,52,81,.25); }
.browse-card.dark { color: white; background: var(--navy); border-color: rgba(255,255,255,.1); }
.browse-card-copy { position:absolute; z-index:2; left:26px; right:26px; bottom:22px; display:flex; align-items:end; justify-content:space-between; gap:16px; }
.browse-card-title { font-family: "Borhn Serif"; font-size: 34px; line-height: 1; }
.browse-card-meta { color: var(--muted); font-size: 12px; }
.browse-card.dark .browse-card-meta { color: rgba(255,255,255,.55); }
.browse-card-image {
    position:absolute;
    inset:0;
    z-index:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:filter .25s ease, transform .25s ease;
}
.browse-card.has-image::before {
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(180deg,rgba(5,18,30,.08) 18%,rgba(5,18,30,.76) 100%);
}
.browse-card.has-image .browse-card-copy { color:white; }
.browse-card.has-image .browse-card-title { color:white; }
.browse-card.has-image:hover .browse-card-image { filter:brightness(1.04); }

.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.category-link { display: flex; justify-content: space-between; align-items:center; gap: 20px; min-height: 92px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.7); transition:.2s ease; }
.category-link:hover { background:white; transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.category-link strong { font-family:"Borhn Serif"; font-size:22px; font-weight:300; }
.category-link span { color:var(--muted); font-size:12px; }

.product-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.product-card { overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-md); background:white; box-shadow:0 10px 40px rgba(16,39,62,.05); transition:.25s ease; }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.product-image { width:100%; aspect-ratio:1 / 1; display:grid; place-items:center; padding:16px; background:linear-gradient(145deg,#ffffff,#f5f5f5); overflow:hidden; }
.product-image img { width:100%; height:100%; object-fit:contain; transition:.3s ease; }
.product-card:hover .product-image img { transform:scale(1.025); }
.image-placeholder { width:100%; height:100%; display:grid; place-items:center; color:#8a9298; font-size:12px; }
.product-card-body { padding:16px; }
.product-card-title { min-height:44px; margin:0; font-family:"Borhn Serif"; font-size:21px; font-weight:300; line-height:1.08; }
.product-card-meta { display:flex; justify-content:space-between; gap:8px; margin-top:9px; color:var(--muted); font-size:11px; }
.finish-action-row { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:15px; }
.finish-action-row.no-finishes { justify-content:flex-end; }
.finish-row { display:flex; flex-wrap:wrap; align-items:center; gap:5px; margin:0; }
.finish-chip { width:32px; height:32px; padding:0; border:0; outline:0; border-radius:50%; background-color:transparent; background-size:contain; background-repeat:no-repeat; background-position:center; cursor:pointer; box-shadow:none; }
.finish-chip.active { box-shadow:0 0 0 2px #b8bdc2; }
.card-add-button { width:32px; max-width:32px; height:32px; flex:0 0 auto; display:flex; align-items:center; justify-content:center; gap:0; overflow:hidden; padding:0; border:0; border-radius:999px; background:var(--navy); color:white; cursor:pointer; line-height:1; transition:max-width .22s ease,width .22s ease,padding .22s ease,gap .22s ease,transform .18s ease,box-shadow .18s ease; }
.card-add-icon { flex:0 0 auto; font-size:19px; font-weight:300; }
.card-add-label { max-width:0; overflow:hidden; opacity:0; white-space:nowrap; font-size:11px; font-weight:700; transition:max-width .22s ease,opacity .18s ease; }
.card-add-button:hover,.card-add-button:focus-visible { width:108px; max-width:108px; padding:0 11px; gap:6px; transform:translateY(-1px); box-shadow:var(--shadow-sm); outline:none; }
.card-add-button:hover .card-add-label,.card-add-button:focus-visible .card-add-label { max-width:78px; opacity:1; }

.page-hero { padding: clamp(44px, 5vw, 68px) 0; background:var(--navy); color:white; }
.page-hero .display-heading { font-size:clamp(50px,6vw,86px); }
.filter-bar { position:sticky; top:76px; z-index:20; border-bottom:1px solid var(--line); background:rgba(247,246,243,.88); backdrop-filter:blur(18px); }
.filter-inner { min-height:64px; display:flex; align-items:center; gap:10px; overflow:auto; scrollbar-width:none; }
.filter-inner + .filter-inner { border-top:1px solid var(--line); }
.filter-inner::-webkit-scrollbar { display:none; }
.filter-label { flex:0 0 auto; margin-right:4px; color:var(--muted); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.filter-chip { white-space:nowrap; border:1px solid var(--line); border-radius:999px; background:white; color:var(--navy); padding:10px 14px; cursor:pointer; font-size:12px; }
.filter-chip.active { background:var(--navy); color:white; border-color:var(--navy); }
.results-bar { display:flex; justify-content:space-between; gap:20px; align-items:center; margin-bottom:28px; }
.search-input { width:min(390px,100%); min-height:46px; padding:0 16px; border:1px solid var(--line); border-radius:999px; background:white; outline:none; }
.search-input:focus { border-color:var(--navy); box-shadow:0 0 0 4px rgba(23,52,81,.08); }

.product-detail { padding:clamp(62px,8vw,110px) 0; }
.product-detail-grid { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr); gap:clamp(42px,7vw,100px); align-items:start; }
.product-detail-media { position:sticky; top:110px; min-height:560px; display:grid; place-items:center; padding:50px; border-radius:var(--radius-lg); background:linear-gradient(145deg,#ffffff,#f5f5f5); }
.product-detail-media img { width:100%; height:100%; max-height:620px; object-fit:contain; }
.product-detail-copy { padding-top:22px; }
.product-detail-title { max-width:680px; margin:0; font-family:"Borhn Serif"; font-size:clamp(30px,2.4vw,42px); font-weight:300; line-height:1.04; }
.product-sku { margin-top:16px; color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
.product-description { margin-top:28px; color:#59636b; font-size:16px; line-height:1.7; }
.variant-panel { margin-top:34px; padding:22px; border:1px solid var(--line); border-radius:var(--radius-md); background:white; }
.variant-panel-label { margin:0 0 14px; font-size:11px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.finish-options { display:flex; flex-wrap:wrap; gap:10px; }
.finish-option { display:flex; align-items:center; gap:9px; padding:8px 12px 8px 8px; border:1px solid var(--line); border-radius:999px; background:white; cursor:pointer; color:var(--navy); font-size:12px; }
.finish-option.active { border-color:var(--navy); box-shadow:0 0 0 2px rgba(23,52,81,.08); }
.finish-option .finish-chip { width:32px; height:32px; pointer-events:none; }
.product-price { margin-top:18px; font-family:"Borhn Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size:16px; font-weight:500; line-height:1.35; color:#4f5962; }
.product-detail-copy .product-price { font-size:18px; }
.quantity-row { display:flex; gap:12px; margin-top:22px; align-items:stretch; }
.quantity-stepper { min-height:52px; display:grid; grid-template-columns:38px 42px 38px; align-items:center; overflow:hidden; border:1px solid var(--line); border-radius:999px; background:white; box-shadow:0 8px 24px rgba(16,39,62,.06); }
.quantity-step-button { height:100%; border:0; background:transparent; color:var(--navy); cursor:pointer; font-size:18px; line-height:1; }
.quantity-step-button:hover { background:var(--ivory); }
.quantity-input { width:42px; min-height:50px; padding:0; border:0; background:transparent; color:var(--ink); text-align:center; outline:none; font-weight:700; -moz-appearance:textfield; }
.quantity-input::-webkit-outer-spin-button,.quantity-input::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
.quantity-row .primary-button { flex:1; }
.detail-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; }
.detail-tag { padding:8px 11px; border-radius:999px; background:var(--ivory); color:var(--navy); font-size:11px; }
.product-description { white-space:pre-line; }
.product-spec-stack { display:grid; gap:12px; margin-top:28px; }
.product-spec-card { padding:17px 18px; border:1px solid var(--line); border-radius:14px; background:white; }
.product-spec-label { margin:0; color:var(--muted); font-size:10px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.product-required-list { margin:10px 0 0; padding-left:18px; color:#4f5962; font-size:12px; line-height:1.6; }
.product-required-list li + li { margin-top:4px; }
.product-certification-list { display:flex; flex-wrap:wrap; gap:7px; margin-top:10px; }
.product-certification-badge { display:inline-flex; align-items:center; min-height:29px; padding:0 10px; border:1px solid #ccd7df; border-radius:999px; background:#f7fafc; color:var(--navy); font-size:10px; font-weight:700; }

.quote-page-grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(360px,.55fr); gap:40px; align-items:start; }
.quote-list { display:grid; gap:12px; }
.quote-item { display:grid; grid-template-columns:88px 1fr auto; gap:16px; align-items:center; padding:14px; border:1px solid var(--line); border-radius:var(--radius-sm); background:white; }
.quote-thumb { width:88px; height:76px; padding:8px; display:grid; place-items:center; border-radius:10px; background:var(--ivory); }
.quote-thumb img { width:100%; height:100%; object-fit:contain; }
.quote-item-title { margin:0; font-family:"Borhn Serif"; font-size:21px; font-weight:300; }
.quote-item-meta { margin-top:6px; color:var(--muted); font-size:11px; }
.remove-link { border:0; background:transparent; color:#8b3942; cursor:pointer; font-size:12px; }
.quote-form { position:sticky; top:104px; padding:28px; border-radius:var(--radius-md); background:var(--navy); color:white; box-shadow:var(--shadow-lg); }
.quote-form .card-heading { margin-bottom:22px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-field { display:grid; gap:7px; }
.form-field.full { grid-column:1/-1; }
.form-field label { color:rgba(255,255,255,.65); font-size:11px; }
.form-field input, .form-field textarea { width:100%; min-height:46px; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(255,255,255,.08); color:white; padding:12px 13px; outline:none; }
.form-field textarea { min-height:110px; resize:vertical; }
.form-field input:focus, .form-field textarea:focus { border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.12); }
.form-field input::placeholder, .form-field textarea::placeholder { color:rgba(255,255,255,.38); }
.form-status { margin-top:14px; font-size:12px; line-height:1.5; }

.empty-state { padding:70px 30px; border:1px dashed var(--line); border-radius:var(--radius-md); text-align:center; background:rgba(255,255,255,.55); }
.empty-state h3 { margin:0; font-family:"Borhn Serif"; font-size:34px; font-weight:300; }
.empty-state p { color:var(--muted); }

.site-footer { padding:64px 0 30px; background:var(--navy); color:white; }
.footer-grid { display:grid; grid-template-columns:1.2fr .62fr .75fr .75fr; gap:42px; }
.footer-logo { width:170px; height:auto; object-fit:contain; margin-bottom:22px; }
.footer-copy { max-width:420px; margin-top:15px; color:rgba(255,255,255,.62); font-size:14px; line-height:1.6; }
.footer-heading { margin:0 0 15px; color:#fff; font-size:11px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.footer-links { display:grid; gap:10px; color:rgba(255,255,255,.76); font-size:14px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:60px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.48); font-size:12px; }
.contact-page { min-height:calc(100vh - 76px); display:grid; align-items:center; padding:88px 0 110px; }
.contact-wrap { width:min(calc(100% - 40px),760px); margin:0 auto; text-align:center; }
.contact-wrap .display-heading { margin-bottom:20px; }
.contact-copy { max-width:650px; margin:0 auto 32px; color:var(--muted); font-size:18px; line-height:1.7; }
.contact-card { padding:38px; border:1px solid var(--line); border-radius:28px; background:#fff; box-shadow:var(--shadow-sm); }
.contact-email { display:block; margin:0 0 24px; color:var(--navy); font-family:"Borhn Serif", Georgia, serif; font-size:34px; line-height:1.2; }

.toast { position:fixed; right:20px; bottom:20px; z-index:60; max-width:360px; padding:15px 18px; border-radius:14px; background:var(--navy); color:white; box-shadow:var(--shadow-lg); transform:translateY(25px); opacity:0; pointer-events:none; transition:.25s ease; }
.toast.visible { transform:translateY(0); opacity:1; }
.preview-banner { position:fixed; left:50%; bottom:18px; z-index:55; transform:translateX(-50%); padding:10px 16px; border-radius:999px; background:#f3c86d; color:#3c2d0b; font-size:11px; font-weight:800; box-shadow:var(--shadow-lg); }
.error-panel { width:min(calc(100% - 40px),800px); margin:80px auto; padding:30px; border:1px solid #e5a8ad; border-radius:var(--radius-md); background:#fff4f4; }

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

@media (max-width: 1080px) {
    .portrait-menu-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .collection-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .category-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .site-nav { display:none; }
    .mobile-menu-button { display:grid; }
    .header-inner { grid-template-columns:auto minmax(150px,1fr) auto; gap:12px; }
    .brand-link { grid-column:1; }
    .header-search-form { grid-column:2; }
    .header-actions { grid-column:3; }
}

@media (max-width: 780px) {
    .portrait-menu-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .header-inner { min-height:68px; grid-template-columns:auto 1fr auto; }
    .brand-logo { width:120px; }
    .header-search-input { min-height:36px; }
    .brand-word { display:none; }
    .brand-mark { width:40px; height:40px; }
    .quote-pill { padding:10px 12px; }
    .intro-grid, .product-detail-grid, .quote-page-grid, .footer-grid { grid-template-columns:1fr; }
    .product-detail-media { position:relative; top:auto; min-height:390px; padding:28px; }
    .quote-form { position:relative; top:auto; }
    .section-title-row { display:grid; align-items:start; }
    .category-grid, .collection-grid, .product-grid { grid-template-columns:1fr; }
    .form-grid { grid-template-columns:1fr; }
    .form-field.full { grid-column:auto; }
    .footer-bottom { display:grid; }
    .filter-bar { top:68px; }
}

@media (max-width: 520px) {
    .portrait-menu-inner { width:calc(100% - 24px); }
    .portrait-menu-grid { grid-template-columns:1fr 1fr; gap:10px; }
    .portrait-menu-card-title { font-size:22px; }
    .container { width:min(calc(100% - 24px),var(--page-width)); }
    .header-inner { width:calc(100% - 20px); grid-template-columns:auto auto; padding:8px 0; }
    .header-search-form { grid-column:1/-1; grid-row:2; }
    .header-actions { grid-column:2; grid-row:1; gap:6px; }
    .brand-link { grid-column:1; grid-row:1; }
    .card-grid { grid-template-columns:1fr; }
    .browse-card { min-height:210px; }
    .hero-mark { margin-bottom:70px; }
    .quote-item { grid-template-columns:70px 1fr; }
    .quote-thumb { width:70px; height:66px; }
    .quote-item .remove-link { grid-column:2; justify-self:start; padding:0; }
}


/* Brochure-inspired application colors, balanced with the clean glass UI. */
.browse-card.application-1 { background:#B0937B; color:#fff; border-color:rgba(255,255,255,.16); }
.browse-card.application-2 { background:#A76061; color:#fff; border-color:rgba(255,255,255,.16); }
.browse-card.application-3 { background:#A84D22; color:#fff; border-color:rgba(255,255,255,.16); }
.browse-card.application-4 { background:#596A76; color:#fff; border-color:rgba(255,255,255,.16); }
.browse-card.application-1 .browse-card-meta, .browse-card.application-2 .browse-card-meta, .browse-card.application-3 .browse-card-meta, .browse-card.application-4 .browse-card-meta { color:rgba(255,255,255,.65); }


/* Product-group, collection, About, and Blog pages. */
.group-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.group-card { min-height:330px; position:relative; display:grid; grid-template-rows:170px 1fr; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-md); background:white; box-shadow:0 12px 40px rgba(16,39,62,.06); transition:.25s ease; }
.group-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.group-card-image { position:relative; overflow:hidden; background:linear-gradient(145deg,var(--navy),var(--navy)); }
.group-card-image img { width:100%; height:100%; object-fit:cover; object-position:center center; transform-origin:center center; opacity:.82; }
.group-card-image.no-image::after { content:"B."; position:absolute; right:24px; bottom:8px; color:rgba(255,255,255,.14); font-family:"Borhn Serif"; font-size:110px; }
.group-card-body { padding:24px; }
.group-card-title { margin:0; font-family:"Borhn Serif"; font-size:38px; font-weight:300; }
.group-card-copy { margin:12px 0 0; color:var(--muted); line-height:1.55; }
.group-subcategory-list { display:flex; flex-wrap:wrap; gap:7px; margin-top:20px; }
.group-subcategory { padding:8px 10px; border-radius:999px; background:var(--ivory); color:var(--navy); font-size:11px; }
.group-subcategory:hover { background:var(--navy); color:white; }
.collection-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.collection-card { position:relative; aspect-ratio:4 / 3; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--navy); color:white; box-shadow:0 10px 36px rgba(16,39,62,.08); transition:.24s ease; }
.collection-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.collection-card-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:filter .25s ease, transform .25s ease; }
.collection-card:hover .collection-card-image { filter:brightness(1.04); }
.collection-card-shade { position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(5,18,30,.04) 24%,rgba(5,18,30,.82) 100%); }
.collection-card-copy { position:absolute; z-index:2; left:24px; right:24px; bottom:22px; display:flex; align-items:end; justify-content:space-between; gap:16px; }
.collection-card-title { font-family:"Borhn Serif"; font-size:clamp(32px,3vw,46px); line-height:1; }
.collection-card-placeholder { position:absolute; inset:0; display:grid; place-items:center; color:rgba(255,255,255,.14); font-family:"Borhn Serif"; font-size:100px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; color:rgba(255,255,255,.58); font-size:11px; }
.breadcrumbs a:hover { color:white; }
.about-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.72fr); gap:clamp(40px,7vw,100px); align-items:center; }
.about-hero-image { min-height:520px; overflow:hidden; border-radius:var(--radius-lg); background:linear-gradient(145deg,var(--navy),var(--navy)); box-shadow:var(--shadow-lg); }
.about-hero-image img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.about-card-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.about-card { padding:34px; border:1px solid var(--line); border-radius:var(--radius-md); background:white; }
.about-card h2 { margin:0; font-family:"Borhn Serif"; font-size:36px; font-weight:300; }
.about-card p { margin:18px 0 0; color:var(--muted); line-height:1.7; }
.blog-pagination { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:42px; flex-wrap:wrap; }
.blog-page-link { min-width:40px; height:40px; display:grid; place-items:center; padding:0 12px; border:1px solid var(--line); border-radius:999px; background:var(--white); color:var(--navy); font-size:13px; font-weight:700; box-shadow:var(--shadow-sm); }
.blog-page-link:hover { border-color:rgba(16,39,62,.35); transform:translateY(-1px); }
.blog-page-link.active { background:var(--navy); color:var(--white); border-color:var(--navy); }
.blog-page-link.disabled { opacity:.35; pointer-events:none; }
.blog-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.blog-card { overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-md); background:white; box-shadow:0 10px 40px rgba(16,39,62,.05); transition:.25s ease; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.blog-card-image { height:230px; background:linear-gradient(145deg,var(--navy),var(--navy)); overflow:hidden; }
.blog-card-image img { width:100%; height:100%; object-fit:cover; }
.blog-card-body { padding:25px; }
.blog-meta { color:var(--gold); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.blog-card-title { margin:13px 0 0; font-family:"Borhn Serif"; font-size:31px; font-weight:300; line-height:1.05; }
.blog-excerpt { margin:15px 0 0; color:var(--muted); line-height:1.6; }
.article-shell { width:min(calc(100% - 40px),900px); margin:0 auto; }
.article-hero-image { margin-top:-34px; overflow:hidden; border-radius:var(--radius-lg); background:var(--ivory); box-shadow:var(--shadow-lg); }
.article-hero-image img { width:100%; max-height:560px; object-fit:cover; }
.article-body { padding:clamp(50px,7vw,90px) 0; font-size:18px; line-height:1.72; color:#4f5962; }
.article-body p { margin:0 0 1.25em; }
.article-body h2,.article-body h3,.article-body h4 { color:var(--ink); font-family:"Borhn Serif"; font-weight:300; letter-spacing:-0.015em; line-height:1.12; }
.article-body h2 { margin:1.75em 0 .55em; font-size:44px; }
.article-body h3 { margin:1.55em 0 .5em; font-size:32px; }
.article-body h4 { margin:1.05em 0 .55em; font-size:24px; line-height:1.2; }
.article-body ul,.article-body ol { margin:0 0 1.45em; padding-left:1.35em; }
.article-body a:not(.article-back) { color:var(--navy); text-decoration:underline; text-underline-offset:3px; }
.article-body img { height:auto; margin:2em auto; border-radius:18px; }
.article-body blockquote { margin:2em 0; padding:8px 0 8px 24px; border-left:3px solid var(--gold); color:var(--ink); font-family:"Borhn Serif"; font-size:28px; line-height:1.25; }
.article-body table { width:100%; margin:2em 0; border-collapse:collapse; font-size:15px; }
.article-body th,.article-body td { padding:12px; border:1px solid var(--line); text-align:left; }
.article-back { display:inline-flex; margin-bottom:28px; color:var(--navy); font-weight:800; font-size:12px; }
@media (max-width: 640px) {
    .article-body { font-size:17px; line-height:1.68; }
    .article-body h2 { font-size:34px; }
    .article-body h3 { font-size:28px; }
    .article-body h4 { font-size:22px; }
}

@media (max-width: 1080px) {
    .collection-grid, .blog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 780px) {
    .group-grid, .about-hero-grid, .about-card-grid { grid-template-columns:1fr; }
    .about-hero-image, .about-hero-image img { min-height:380px; }
}
@media (max-width: 560px) {
    .collection-grid, .blog-grid { grid-template-columns:1fr; }
}

.section.has-background-image { background-size:cover; background-repeat:no-repeat; }
.section.has-background-image > .container { position:relative; z-index:1; }
.section.has-background-image.section-white,.section.has-background-image.section-ivory { color:var(--ink); }
.section.has-background-image.section-dark { color:white; }
.section.has-background-image .glass-card { background:rgba(255,255,255,.82); }
.section.has-background-image .product-card { box-shadow:0 14px 44px rgba(16,39,62,.13); }
.blog-card-image { display:block; }
.blog-post-hero { padding-top:clamp(64px,7vw,104px); padding-bottom:clamp(70px,8vw,118px); }
.blog-post-title { display:block; max-width:900px; color:#fff; }
.product-group-hero { position:relative; min-height:390px; overflow:hidden; display:flex; align-items:center; }
.product-group-hero-media { position:absolute; top:0; right:0; bottom:0; left:48%; overflow:hidden; background:var(--navy); }
.product-group-hero-media img { width:100%; height:100%; object-fit:cover; }
.product-group-hero-gradient { position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,var(--navy) 0%,var(--navy) 43%,rgba(16,39,62,.94) 52%,rgba(16,39,62,.55) 69%,rgba(16,39,62,.16) 100%); }
.product-group-hero-content { position:relative; z-index:2; width:min(calc(100% - 40px),var(--page-width)); margin:0 auto; padding-top:18px; padding-bottom:18px; }
.product-group-hero-content .display-heading,.product-group-hero-content .lede { max-width:53%; }
@media (max-width:780px){.product-group-hero-media{left:0;opacity:.48}.product-group-hero-gradient{background:linear-gradient(90deg,rgba(16,39,62,.98),rgba(16,39,62,.78))}.product-group-hero-content .display-heading,.product-group-hero-content .lede{max-width:100%}}
.article-meta,.product-collection { margin:0 0 18px; color:var(--gold); font-size:11px; font-weight:700; letter-spacing:.04em; }

.product-price-under-sku { margin-top: 8px; margin-bottom: 12px; }

/* v1.16.1 — quote builder, collection filters, product facets, legal page */
.catalog-facets {
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.catalog-facets-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.catalog-facets-label {
    flex: 0 0 auto;
    display: grid;
    gap: 3px;
    min-width: 108px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}
.catalog-facets-label strong {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.catalog-facet-controls {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
}
.catalog-facet {
    display: grid;
    gap: 5px;
}
.catalog-facet > span {
    padding-left: 3px;
    color: #6c7680;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.catalog-facet select {
    min-width: 142px;
    height: 40px;
    padding: 0 34px 0 13px;
    border: 1px solid rgba(16,39,62,.17);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    outline: none;
    font-size: 12px;
    cursor: pointer;
}
.catalog-facet select:hover,
.catalog-facet select:focus {
    border-color: rgba(16,39,62,.42);
    box-shadow: 0 0 0 3px rgba(16,39,62,.05);
}
.facet-clear {
    height: 40px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #9a5e59;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.facet-clear:hover { text-decoration: underline; }

.quote-hero .lede { max-width: 740px; }
.quote-builder-section { background: #f5f4f1; }
.quote-page-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .72fr);
    gap: 34px;
}
.quote-builder-column { min-width: 0; }
.quote-package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 17px 18px;
    border: 1px solid rgba(16,39,62,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
}
.quote-package-status {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.quote-package-check {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 7px 18px rgba(16,39,62,.17);
}
.quote-package-status > div { display: grid; gap: 2px; }
.quote-package-status strong {
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}
.quote-package-status > div > span:last-child {
    color: #6e7780;
    font-size: 11px;
}
.quote-package-kicker {
    color: var(--gold);
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.quote-add-more {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(16,39,62,.14);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quote-add-more:hover {
    transform: translateY(-1px);
    border-color: rgba(16,39,62,.30);
    box-shadow: 0 8px 20px rgba(16,39,62,.08);
}
.quote-add-more span { font-size: 16px; font-weight: 400; }
.quote-list { gap: 10px; }
.quote-item {
    grid-template-columns: 92px minmax(0,1fr);
    gap: 18px;
    align-items: center;
    padding: 15px 16px 15px 14px;
    border-radius: 18px;
    box-shadow: 0 5px 16px rgba(16,39,62,.035);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quote-item:hover {
    transform: translateY(-1px);
    border-color: rgba(16,39,62,.20);
    box-shadow: 0 10px 28px rgba(16,39,62,.075);
}
.quote-thumb {
    width: 92px;
    height: 82px;
    overflow: hidden;
    border-radius: 13px;
    background: #f0efec;
}
.quote-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.quote-item-content { min-width: 0; display: grid; gap: 13px; }
.quote-item-heading-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}
.quote-item-heading-row > div:first-child { min-width: 0; }
.quote-item-title {
    color: #152436;
    font-size: 21px;
    line-height: 1.14;
}
.quote-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.quote-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f3f3f1;
    color: #58636d;
    font-size: 10px;
    line-height: 1;
}
.quote-meta-sku { color: var(--navy); font-weight: 700; }
.quote-line-total {
    flex: 0 0 auto;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}
.quote-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.quote-qty-control {
    display: inline-grid;
    grid-template-columns: 34px 48px 34px;
    align-items: center;
    height: 36px;
    overflow: hidden;
    border: 1px solid rgba(16,39,62,.17);
    border-radius: 999px;
    background: #fff;
}
.quote-qty-button {
    align-self: stretch;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.quote-qty-button:hover { background: #f1f2f2; }
.quote-qty-input {
    width: 48px;
    height: 34px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(16,39,62,.10);
    border-right: 1px solid rgba(16,39,62,.10);
    outline: none;
    background: #fff;
    color: var(--navy);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    -moz-appearance: textfield;
}
.quote-qty-input::-webkit-outer-spin-button,
.quote-qty-input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.quote-item .remove-link {
    border: 0;
    background: transparent;
    color: #9b625d;
    font-size: 10px;
    cursor: pointer;
}
.quote-item .remove-link:hover { text-decoration: underline; }

.quote-form {
    position: sticky;
    top: 98px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 20px 48px rgba(16,39,62,.16);
}
.quote-form-section + .quote-form-section {
    margin-top: 21px;
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.quote-form-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.quote-form-section-heading > span {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.11);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}
.quote-form-section-heading > div { display: grid; gap: 1px; }
.quote-form-section-heading strong { font-size: 13px; }
.quote-form-section-heading small { color: rgba(255,255,255,.55); font-size: 10px; }
.quote-form .form-field label { color: rgba(255,255,255,.74); }
.quote-form .form-field label span { color: rgba(255,255,255,.43); font-weight: 400; }
.quote-form .form-field input,
.quote-form .form-field textarea,
.quote-form .form-field select {
    border-color: rgba(255,255,255,.17);
    background: rgba(255,255,255,.075);
    color: #fff;
}
.quote-form .form-field select option { color: #171717; background: #fff; }
.quote-form .form-field input:focus,
.quote-form .form-field textarea:focus,
.quote-form .form-field select:focus {
    border-color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.11);
    box-shadow: 0 0 0 3px rgba(255,255,255,.07);
}
.quote-pricing-summary {
    margin-top: 22px;
    padding: 15px 16px;
    border-radius: 15px;
    background: rgba(255,255,255,.075);
}
.quote-pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 6px 0;
    color: rgba(255,255,255,.72);
    font-size: 11px;
}
.quote-pricing-row strong { color: #fff; font-size: 12px; }
.quote-pricing-row.tax { color: rgba(255,255,255,.52); }
.quote-pricing-row.total {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: #fff;
    font-size: 12px;
}
.quote-pricing-row.total strong { font-size: 16px; }
.quote-pricing-note {
    margin: 8px 0 0;
    color: rgba(255,255,255,.46);
    font-size: 9px;
    line-height: 1.5;
}
.quote-submit-assurance {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: rgba(255,255,255,.72);
}
.quote-submit-assurance > span {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 10px;
}
.quote-submit-assurance > div { display: grid; gap: 1px; }
.quote-submit-assurance strong { color: #fff; font-size: 10px; }
.quote-submit-assurance small { font-size: 9px; line-height: 1.35; }
.quote-submit-button { width: 100%; margin-top: 14px; }
.quote-empty-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 22px;
}

.quote-form-step {
    margin: 0 0 5px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.quote-form > .card-heading {
    margin: 0 0 12px;
    font-size: clamp(32px, 3.2vw, 48px);
}
.quote-form-copy {
    margin: 0 0 18px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.55;
}
.quote-account-chip {
    display: grid;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 10px;
    align-items: center;
    margin: 0 0 22px;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
}
.quote-account-avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: white;
    font-family: "Borhn Serif", Georgia, serif;
    font-size: 20px;
}
.quote-account-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}
.quote-account-copy span {
    color: rgba(255,255,255,.48);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.quote-account-copy strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}
.quote-account-copy small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    line-height: 1.4;
    white-space: nowrap;
}
.quote-address-grid {
    grid-template-columns: minmax(112px,.8fr) minmax(150px,1.35fr) minmax(88px,.65fr);
}
.quote-address-grid .full { grid-column: 1 / -1; }
.quote-zip-status {
    min-height: 14px;
    margin-top: -1px;
    color: rgba(255,255,255,.46);
    font-size: 9px;
    line-height: 1.35;
}
.quote-zip-status.success { color: #bfe2c9; }
.quote-zip-status.error { color: #f0b8b8; }
.quote-zip-status.loading { color: rgba(255,255,255,.55); }
.quote-pricing-summary {
    display: grid;
    gap: 0;
    margin-top: 22px;
    padding: 5px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.075);
}
.quote-summary-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 38px;
    padding: 7px 0;
    color: rgba(255,255,255,.70);
    font-size: 11px;
}
.quote-summary-row + .quote-summary-row {
    border-top: 1px solid rgba(255,255,255,.08);
}
.quote-summary-row > span {
    min-width: 0;
}
.quote-summary-row > strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
}
.quote-tax-row > strong {
    max-width: 190px;
    color: rgba(255,255,255,.60);
    font-size: 9px;
    font-weight: 600;
    white-space: normal;
}
.quote-summary-total {
    min-height: 46px;
    color: #fff;
    font-weight: 700;
}
.quote-summary-total > strong {
    font-size: 16px;
}
.quote-pricing-summary.compact .quote-summary-row > strong {
    white-space: normal;
}

.legal-hero { max-width: 980px; }
.legal-shell {
    width: min(calc(100% - 40px), 920px);
    margin: 0 auto;
}
.legal-body {
    color: #343a40;
    font-size: 15px;
    line-height: 1.8;
}
.legal-body h2,
.legal-body h3 { color: var(--navy); }

@media (max-width: 980px) {
    .catalog-facets-inner { align-items: flex-start; flex-direction: column; gap: 10px; }
    .catalog-facet-controls { width: 100%; }
    .quote-page-grid { grid-template-columns: 1fr; }
    .quote-form { position: static; }
}
@media (max-width: 640px) {
    .catalog-facet { width: calc(50% - 5px); }
    .catalog-facet select { width: 100%; min-width: 0; }
    .facet-clear { width: 100%; text-align: left; padding-left: 3px; }
    .quote-package-header { align-items: flex-start; flex-direction: column; }
    .quote-add-more { width: 100%; justify-content: center; }
    .quote-item { grid-template-columns: 72px minmax(0,1fr); gap: 12px; padding: 12px; }
    .quote-thumb { width: 72px; height: 72px; }
    .quote-item-heading-row { display: grid; gap: 9px; }
    .quote-line-total { justify-self: start; }
    .quote-item-actions { grid-column: 1 / -1; }
    .quote-form { padding: 18px; border-radius: 18px; }
    .quote-address-grid { grid-template-columns: 1fr; }
    .quote-account-copy small { white-space: normal; }
    .quote-summary-row { gap: 12px; }
    .quote-tax-row > strong { max-width: 150px; }
}


.portal-account-pill{
    display:inline-flex;
    align-items:center;
    height:42px;
    min-height:42px;
    padding:0 15px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    color:white;
    background:rgba(255,255,255,.08);
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}
.portal-account-pill:hover{background:rgba(255,255,255,.14)}
.portal-page{min-height:70vh}
.portal-shell{width:min(calc(100% - 40px),1120px);margin:0 auto;padding:clamp(54px,7vw,96px) 0}
.portal-heading{margin:0;font-family:"Borhn Serif",Georgia,serif;font-size:clamp(42px,5vw,68px);font-weight:300;line-height:1}
.portal-subhead{max-width:700px;margin:18px 0 0;color:var(--muted);font-size:16px;line-height:1.65}
.portal-auth-shell .portal-heading{text-align:center}
.portal-auth-shell .portal-subhead{margin-left:auto;margin-right:auto;text-align:center}
.portal-auth-grid{display:grid;grid-template-columns:minmax(0,560px);justify-content:center;gap:18px;margin-top:36px}
.portal-card{padding:28px;border:1px solid var(--line);border-radius:var(--radius-md);background:white;box-shadow:var(--shadow-sm)}
.portal-form[hidden],.portal-card[hidden],[hidden]{display:none!important}
.portal-auth-switch{margin:16px 0 0;color:var(--muted);font-size:13px;line-height:1.5}
.portal-auth-switch .portal-text-button{margin-left:4px}
.portal-code-email{margin:-4px 0 16px;color:var(--muted);font-size:13px;line-height:1.5}
.portal-card h2{margin:0 0 18px;font-family:"Borhn Serif";font-size:34px;font-weight:300}
.portal-form{display:grid;gap:12px}
.portal-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.portal-field{display:grid;gap:6px}
.portal-field label{font-size:11px;font-weight:700;color:var(--muted)}
.portal-field input{width:100%;min-height:48px;padding:0 13px;border:1px solid var(--line);border-radius:12px;background:white;outline:none}
.portal-field input:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(16,39,62,.08)}
.portal-status{min-height:18px;margin-top:8px;font-size:12px;line-height:1.45}
.portal-status.error{color:#9c3e47}
.portal-card-intro{margin:-6px 0 18px;color:var(--muted);font-size:13px;line-height:1.55}
.portal-code-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:2px}
.portal-text-button{appearance:none;border:0;padding:0;background:transparent;color:var(--navy);font:inherit;font-size:12px;font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:3px}
.portal-text-button:disabled{opacity:.5;cursor:default}
#portal-code-form input[name="code"]{font-size:24px;letter-spacing:.28em;font-weight:700;text-align:center}
.portal-account-summary{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:30px}
.portal-summary-card{padding:18px;border:1px solid var(--line);border-radius:16px;background:white}
.portal-summary-label{color:var(--muted);font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.portal-summary-value{margin-top:7px;font-size:15px;font-weight:700}
.portal-notice{margin-top:30px;padding:24px;border:1px solid var(--line);border-radius:18px;background:var(--ivory)}
.portal-notice h2{margin:0;font-family:"Borhn Serif";font-size:34px;font-weight:300}
.portal-notice p{margin:12px 0 0;color:var(--muted);line-height:1.65}
.portal-documents{display:grid;gap:10px;margin-top:28px}
.portal-document{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:center;padding:18px 20px;border:1px solid var(--line);border-radius:16px;background:white}
.portal-document.quote-under-review{border-color:#dfc88e;background:#fff9eb}
.portal-document.quote-needs-info{border-color:#d7b7b7;background:#fff4f3}
.portal-document-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.portal-document-badge{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;background:var(--ivory);color:var(--navy);font-size:10px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap}
.portal-document-badge.review{background:#f4e6bd;color:#6c571f}
.portal-document-badge.info{background:#f6dddd;color:#8b3f45}
.portal-document-badge.ready{background:#e9f4ed;color:#27613d}
.portal-document-title{font-size:15px;font-weight:750;color:var(--navy)}
.portal-document-meta{margin-top:5px;color:var(--muted);font-size:11px}
.portal-document-total{margin-top:6px;font-family:"Borhn Serif";font-size:23px}
.portal-empty{padding:30px;border:1px dashed var(--line);border-radius:18px;background:rgba(255,255,255,.55);color:var(--muted)}

.portal-account-header{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap}
.portal-account-tabs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:34px;padding:8px;border:1px solid var(--line);border-radius:20px;background:white;box-shadow:0 12px 34px rgba(16,39,62,.05)}
.portal-account-tab{min-width:0;min-height:58px;display:flex;align-items:center;justify-content:center;gap:9px;padding:10px 12px;border:0;border-radius:14px;background:transparent;color:var(--muted);cursor:pointer;font-weight:750;font-size:12px;transition:.18s ease}
.portal-account-tab:hover{background:var(--ivory);color:var(--navy)}
.portal-account-tab.active{background:var(--navy);color:white;box-shadow:0 10px 24px rgba(16,39,62,.16)}
.portal-tab-icon{width:19px;height:19px;display:grid;place-items:center;flex:0 0 19px}
.portal-tab-icon svg,.portal-dashboard-card-icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.portal-account-panel{display:none;padding-top:34px}
.portal-account-panel.active{display:block}
.portal-dashboard-hero{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:30px;border:1px solid var(--line);border-radius:22px;background:white;box-shadow:0 12px 36px rgba(16,39,62,.05)}
.portal-dashboard-eyebrow{color:var(--gold);font-size:10px;font-weight:800;letter-spacing:.11em;text-transform:uppercase}
.portal-dashboard-hero h2{margin:7px 0 0;font-family:"Borhn Serif";font-size:42px;font-weight:300;line-height:1}
.portal-dashboard-hero p{max-width:620px;margin:12px 0 0;color:var(--muted);line-height:1.6}
.portal-dashboard-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px}
.portal-dashboard-card{min-width:0;display:flex;align-items:center;gap:14px;padding:20px;border:1px solid var(--line);border-radius:18px;background:white;color:var(--navy);cursor:pointer;text-align:left;transition:.18s ease}
.portal-dashboard-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.portal-dashboard-card-icon{width:34px;height:34px;display:grid;place-items:center;flex:0 0 34px;padding:7px;border-radius:10px;background:var(--ivory)}
.portal-dashboard-card-copy{min-width:0;display:grid;gap:3px}
.portal-dashboard-card-copy strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:"Borhn Serif";font-size:23px;font-weight:300;line-height:1.05}
.portal-dashboard-card-copy small{color:var(--muted);font-size:10px;font-weight:750;text-transform:uppercase;letter-spacing:.06em}
.portal-panel-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.portal-panel-heading h2{margin:0;font-family:"Borhn Serif";font-size:42px;font-weight:300;line-height:1}
.portal-panel-heading p{margin:9px 0 0;color:var(--muted);line-height:1.55}
@media(max-width:780px){
    .portal-account-tabs{grid-template-columns:repeat(2,minmax(0,1fr))}
    .portal-dashboard-grid{grid-template-columns:1fr}
    .portal-dashboard-hero{align-items:flex-start;flex-direction:column}

    .portal-auth-grid,.portal-account-summary{grid-template-columns:1fr}
    .portal-form-row{grid-template-columns:1fr}
    .portal-document{grid-template-columns:1fr}
}
@media(max-width:520px){
    .portal-account-pill{padding:0 10px;font-size:11px}
}


.quote-submit-overlay{position:fixed;inset:0;z-index:120;display:none;place-items:center;padding:24px;background:rgba(8,24,39,.72);backdrop-filter:blur(7px)}
.quote-submit-overlay.visible{display:grid}
.quote-submit-card{width:min(520px,calc(100vw - 40px));padding:34px;border-radius:24px;background:white;color:var(--ink);box-shadow:0 28px 90px rgba(0,0,0,.28);text-align:center}
.quote-submit-spinner{width:48px;height:48px;margin:0 auto 20px;border:4px solid rgba(16,39,62,.12);border-top-color:var(--navy);border-radius:50%;animation:quote-spin .85s linear infinite}
.quote-submit-title{font-family:"Borhn Serif";font-size:34px;font-weight:300;line-height:1.05}
.quote-submit-message{margin:10px 0 0;color:var(--muted);font-size:13px;line-height:1.55}
.quote-submit-progress{height:8px;margin-top:24px;overflow:hidden;border-radius:999px;background:var(--ivory)}
.quote-submit-progress-bar{width:0;height:100%;border-radius:999px;background:var(--navy);transition:width .45s ease}
.quote-submit-percent{margin-top:8px;color:var(--muted);font-size:10px;font-weight:800;letter-spacing:.08em}
@keyframes quote-spin{to{transform:rotate(360deg)}}

/* v1.16.4 — quote submission refinement */
.quote-form{padding:24px}
.quote-form-step{margin-bottom:7px;font-size:10px;letter-spacing:.10em}
.quote-form>.card-heading{max-width:440px;margin:0 0 10px;font-size:clamp(27px,2.15vw,34px);line-height:1.06;letter-spacing:-.018em}
.quote-form-copy{max-width:500px;margin-bottom:20px;color:rgba(255,255,255,.76);font-size:12.5px;line-height:1.55}
.quote-account-chip{grid-template-columns:40px minmax(0,1fr);gap:11px;margin-bottom:24px;padding:12px 13px;border-radius:14px}
.quote-account-avatar{width:40px;height:40px;font-size:20px}
.quote-account-copy{gap:2px}
.quote-account-copy span{font-size:9.5px;letter-spacing:.075em}
.quote-account-copy strong{font-size:13px;line-height:1.35}
.quote-account-copy small{color:rgba(255,255,255,.69);font-size:10.5px;line-height:1.4}
.quote-form-section+.quote-form-section{margin-top:24px;padding-top:24px}
.quote-form-section-heading{align-items:flex-start;gap:11px;margin-bottom:16px}
.quote-form-section-heading>span{flex-basis:28px;width:28px;height:28px;margin-top:1px;font-size:10.5px}
.quote-form-section-heading>div{gap:2px}
.quote-form-section-heading strong{font-size:13px;line-height:1.3}
.quote-form-section-heading small{color:rgba(255,255,255,.66);font-size:10.5px;line-height:1.35}
.quote-form .form-field{gap:7px}
.quote-form .form-field label{min-height:17px;color:rgba(255,255,255,.79);font-size:11px;line-height:1.35}
.quote-form .form-field label span{color:rgba(255,255,255,.58)}
.quote-form .form-field input,.quote-form .form-field select{min-height:48px;height:48px}
.quote-form .form-field textarea{min-height:104px}
.quote-address-grid{grid-template-columns:minmax(118px,.84fr) minmax(170px,1.42fr) minmax(94px,.72fr);align-items:start;column-gap:12px;row-gap:14px}
.quote-address-grid .form-field{align-self:start}
.quote-zip-field{position:relative;padding-bottom:18px}
.quote-zip-status{position:absolute;left:0;right:0;bottom:0;min-height:14px;margin:0;font-size:9.5px;line-height:1.35}
.quote-pricing-summary{margin-top:24px;border-radius:14px}
.quote-summary-row{min-height:40px;color:rgba(255,255,255,.76);font-size:11.5px}
.quote-summary-row>strong{font-size:12.5px}
.quote-tax-row>strong{color:rgba(255,255,255,.68);font-size:10.5px}
.quote-base-price-note{display:grid;gap:3px;margin-top:14px;padding:12px 13px;border:1px solid rgba(255,255,255,.09);border-radius:12px;background:rgba(255,255,255,.045)}
.quote-base-price-note strong{color:#fff;font-size:11.5px;line-height:1.35}
.quote-base-price-note span{color:rgba(255,255,255,.67);font-size:10.5px;line-height:1.45}
.quote-submit-assurance{gap:10px;margin-top:18px}
.quote-submit-assurance>span{flex-basis:27px;width:27px;height:27px;font-size:11px}
.quote-submit-assurance>div{gap:2px}
.quote-submit-assurance strong{font-size:11.5px;line-height:1.35}
.quote-submit-assurance small{color:rgba(255,255,255,.68);font-size:10.5px;line-height:1.4}
.quote-submit-button{min-height:48px;margin-top:16px}
@media(max-width:640px){.quote-form{padding:20px}.quote-form>.card-heading{font-size:28px}.quote-address-grid{grid-template-columns:1fr}.quote-zip-field{padding-bottom:18px}}