:root {
  --ink: #17201d;
  --forest: #18332a;
  --forest-2: #25483b;
  --stone: #f4f1eb;
  --paper: #fffdf9;
  --line: #ddd7cc;
  --gold: #b99254;
  --muted: #68706c;
  --white: #fff;
  --shadow: 0 18px 50px rgba(23, 32, 29, .12);
  --radius: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(3rem, 6vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 4.3vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0; }
.lede { max-width: 690px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.7; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 46px; }
.section-head .lede { max-width: 520px; }

.topbar { background: var(--forest); color: #e9eee9; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.topbar .container { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-items { display: flex; gap: 28px; }
.topbar a { color: var(--white); font-weight: 800; }
.header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(23,32,29,.08); background: rgba(255,253,249,.95); backdrop-filter: blur(14px); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 246px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--forest); font-family: Georgia, serif; font-size: 1.3rem; }
.brand-copy strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; letter-spacing: .06em; }
.brand-copy span { display: block; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .92rem; font-weight: 700; }
.nav-links a { padding: 28px 0 24px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest-2); border-color: var(--gold); }
.nav-actions { display: flex; gap: 10px; }
.btn { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; background: var(--forest); color: var(--white); font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); background: var(--forest-2); }
.btn-light { background: var(--white); color: var(--forest); }
.btn-outline { border-color: currentColor; background: transparent; color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 1.25rem; }

.hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; background: #cbc3b4; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,22,18,.82) 0%, rgba(10,22,18,.48) 38%, rgba(10,22,18,.06) 72%); z-index: 1; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 120px 0 96px; color: var(--white); }
.hero-content h1 { max-width: 720px; }
.hero-content .lede { margin-top: 22px; max-width: 620px; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 28px; font-size: .79rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof span::before { content: ""; width: 6px; height: 6px; display: inline-block; margin-right: 10px; border-radius: 50%; background: var(--gold); vertical-align: 1px; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.choice-card { min-height: 230px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: transform .25s, box-shadow .25s; }
.choice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.choice-num { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.choice-card h3 { margin-top: 36px; }
.choice-card p { margin-top: 13px; color: var(--muted); }
.choice-card .arrow { margin-top: auto; font-weight: 900; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.split-media { min-height: 620px; object-fit: cover; }
.split-copy { padding: clamp(48px, 7vw, 96px); display: flex; flex-direction: column; justify-content: center; background: var(--forest); color: var(--white); }
.split-copy .lede { margin-top: 22px; color: rgba(255,255,255,.74); }
.check-list { margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 24px; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--gold); font-weight: 900; }
.split-copy .btn { align-self: flex-start; margin-top: 34px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { position: relative; min-height: 470px; overflow: hidden; background: #ddd; }
.product-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover img { transform: scale(1.035); }
.product-overlay { position: absolute; inset: auto 0 0; padding: 90px 26px 25px; color: var(--white); background: linear-gradient(transparent, rgba(10,18,16,.88)); }
.product-overlay small { display: block; margin-bottom: 6px; color: #efe2c8; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.swatches { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--line); }
.swatch { min-height: 150px; padding: 18px 14px; display: flex; flex-direction: column; justify-content: end; border-right: 1px solid rgba(23,32,29,.1); font-weight: 800; }
.swatch:last-child { border: 0; }
.swatch span { display: block; font-size: .75rem; font-weight: 600; opacity: .68; }
.swatch.white { background: #f8f8f4; }
.swatch.oak { background: linear-gradient(90deg,#c8a67e,#ddc099 40%,#b98f66); }
.swatch.vanilla { background: #e7ddc8; }
.swatch.dawn { background: #c5c9c7; }
.swatch.light-grey { background: #d6d7d3; }
.swatch.black { background: #242724; color: white; }
.swatch.honey { background: linear-gradient(90deg,#a86e3b,#c68b50,#9a6237); color: white; }

.stats { background: var(--stone); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 42px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: clamp(2.2rem,4vw,4rem); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.quote-card { padding: 44px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.stars { color: #c89336; letter-spacing: .1em; }
.quote-card blockquote { margin: 22px 0; font-family: Georgia,serif; font-size: 1.55rem; line-height: 1.45; }
.quote-card cite { color: var(--muted); font-style: normal; font-weight: 700; }

.cta-band { padding: 72px 0; background: var(--forest); color: var(--white); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 42px; }
.cta-inner p { margin-top: 12px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.footer { padding: 72px 0 26px; background: #0e1c17; color: rgba(255,255,255,.74); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr 1fr; gap: 54px; }
.footer .brand { color: var(--white); }
.footer p { margin-top: 20px; max-width: 390px; }
.footer h3 { margin-bottom: 18px; color: var(--white); font-family: Inter,sans-serif; font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 58px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.page-hero { padding: 96px 0 80px; background: var(--stone); }
.page-hero .lede { margin-top: 22px; }
.page-hero .breadcrumb { margin-bottom: 26px; color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-hero.image-hero { position: relative; min-height: 570px; display: flex; align-items: end; color: var(--white); overflow: hidden; }
.page-hero.image-hero::before { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(9,20,16,.82),rgba(9,20,16,.18)); }
.page-hero.image-hero img { position:absolute; inset:0; height:100%; object-fit:cover; }
.page-hero.image-hero .container { position:relative; z-index:2; }
.page-hero.image-hero .lede,.page-hero.image-hero .breadcrumb { color:rgba(255,255,255,.82); }

.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card { padding:30px; border:1px solid var(--line); background:var(--white); }
.info-card .icon { width:44px; height:44px; display:grid; place-items:center; margin-bottom:30px; background:var(--stone); color:var(--forest); font-weight:900; }
.info-card p { margin-top:12px; color:var(--muted); }
.collection-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.collection-card { border:1px solid var(--line); background:var(--white); overflow:hidden; }
.collection-visual { height:255px; padding:24px; display:flex; align-items:end; }
.collection-visual::after { content:""; width:100%; height:78%; border:9px solid rgba(255,255,255,.34); border-bottom-width:18px; box-shadow:inset 0 0 0 2px rgba(0,0,0,.08); }
.collection-card .copy { padding:22px; }
.collection-card p { margin-top:8px; color:var(--muted); font-size:.9rem; }

.resource-group + .resource-group { margin-top:60px; }
.resource-group h2 { margin-bottom:25px; font-size:2rem; }
.resource-list { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); }
.resource-item { min-height:130px; padding:24px 18px 24px 0; display:flex; align-items:center; justify-content:space-between; gap:22px; border-bottom:1px solid var(--line); }
.resource-item:nth-child(odd) { margin-right:30px; }
.resource-item:nth-child(even) { padding-left:30px; border-left:1px solid var(--line); }
.resource-item p { color:var(--muted); font-size:.9rem; }
.resource-action { white-space:nowrap; color:var(--forest); font-size:.78rem; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }

.form-wrap { display:grid; grid-template-columns:.85fr 1.15fr; gap:72px; }
.contact-details { display:grid; gap:28px; margin-top:38px; }
.contact-details strong { display:block; margin-bottom:5px; }
.contact-details span,.contact-details a { color:var(--muted); }
.form-card { padding:38px; border:1px solid var(--line); background:var(--white); box-shadow:var(--shadow); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.78rem; font-weight:900; letter-spacing:.06em; text-transform:uppercase; }
.field input,.field select,.field textarea { width:100%; min-height:52px; padding:12px 14px; border:1px solid var(--line); border-radius:0; background:#fff; color:var(--ink); }
.field textarea { min-height:128px; resize:vertical; }
.field small { color:var(--muted); }
.form-card .btn { margin-top:22px; }
.hp { position:absolute!important; left:-9999px!important; }
.form-status { margin-top:14px; color:var(--forest); font-weight:700; }

.gallery-grid { display:grid; grid-template-columns:1.3fr .7fr; grid-auto-rows:300px; gap:16px; }
.gallery-grid figure { position:relative; margin:0; overflow:hidden; background:var(--stone); }
.gallery-grid figure:nth-child(3n) { grid-column:span 2; }
.gallery-grid img { height:100%; object-fit:cover; }
.gallery-grid figcaption { position:absolute; inset:auto 0 0; padding:50px 20px 18px; color:white; background:linear-gradient(transparent,rgba(0,0,0,.72)); font-weight:800; }

.area-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.area-card { padding:26px; border:1px solid var(--line); background:var(--white); }
.area-card p { margin-top:9px; color:var(--muted); font-size:.9rem; }
.map-panel { padding:50px; background:var(--stone); }
.map-panel ul { margin:24px 0 0; padding-left:20px; columns:3; color:var(--muted); }

.floating-contact { position:fixed; right:18px; bottom:18px; z-index:15; display:grid; gap:8px; }
.floating-contact a { width:52px; height:52px; display:grid; place-items:center; border-radius:50%; background:var(--forest); color:white; box-shadow:0 8px 28px rgba(0,0,0,.22); font-size:.74rem; font-weight:900; letter-spacing:.04em; }

@media (max-width: 1270px) {
  .nav-links { position:fixed; inset:118px 20px auto; padding:22px; display:none; align-items:stretch; flex-direction:column; gap:0; background:var(--paper); border:1px solid var(--line); box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 4px; }
  .nav-actions .btn-outline { display:none; }
  .menu-toggle { display:block; }
  .choice-grid,.product-grid,.card-grid { grid-template-columns:repeat(2,1fr); }
  .split { grid-template-columns:1fr; }
  .split-media { min-height:500px; }
  .swatches { grid-template-columns:repeat(4,1fr); }
  .swatch:nth-child(4) { border-right:0; }
  .collection-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .area-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 720px) {
  .container { width:min(100% - 30px,var(--max)); }
  .topbar-items span:nth-child(n+2) { display:none; }
  .topbar .container { min-height:34px; justify-content:center; }
  .topbar .container > a { display:none; }
  .nav { min-height:72px; }
  .brand { min-width:0; }
  .brand-mark { width:38px; height:38px; }
  .brand-copy strong { font-size:.95rem; }
  .brand-copy span { font-size:.56rem; }
  .nav-actions .btn { display:none; }
  .nav-links { inset:106px 15px auto; }
  .hero { min-height:720px; }
  .hero::before { background:linear-gradient(0deg,rgba(10,22,18,.9),rgba(10,22,18,.16) 82%); }
  .hero-content { padding:90px 0 52px; }
  .hero-actions .btn { width:100%; }
  .hero-proof { gap:10px 20px; margin-top:36px; }
  .section { padding:72px 0; }
  .section-head { align-items:start; flex-direction:column; margin-bottom:32px; }
  .choice-grid,.product-grid,.card-grid,.collection-grid,.resource-list,.form-grid,.area-grid { grid-template-columns:1fr; }
  .choice-card { min-height:200px; }
  .product-card { min-height:410px; }
  .split-media { min-height:390px; }
  .split-copy { padding:48px 24px; }
  .check-list { grid-template-columns:1fr; }
  .swatches { grid-template-columns:repeat(2,1fr); }
  .swatch { min-height:120px; border-bottom:1px solid rgba(23,32,29,.1); }
  .stat-grid { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .trust-grid,.form-wrap { grid-template-columns:1fr; gap:42px; }
  .cta-inner { align-items:flex-start; flex-direction:column; }
  .cta-actions,.cta-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr; gap:35px; }
  .footer-bottom { flex-direction:column; }
  .page-hero { padding:68px 0 56px; }
  .page-hero.image-hero { min-height:520px; }
  .resource-item,.resource-item:nth-child(odd),.resource-item:nth-child(even) { margin:0; padding:22px 0; border-left:0; }
  .form-card { padding:24px; }
  .gallery-grid { grid-template-columns:1fr; grid-auto-rows:260px; }
  .gallery-grid figure:nth-child(3n) { grid-column:auto; }
  .map-panel { padding:32px 24px; }
  .map-panel ul { columns:1; }
  .floating-contact { right:12px; bottom:12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto!important; transition:none!important; }
}

@media (min-width:1271px){.brand{min-width:184px}.nav{gap:20px}.nav-links{gap:18px}.nav-actions .btn-outline{display:none}}
.btn:disabled{opacity:.55;cursor:not-allowed;transform:none}

/* Kitchen inspiration — existing brand colors and typography retained. */
.kitchen-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; }
.kitchen-card { scroll-margin-top:112px; }
.kitchen-image-link { display:block; overflow:hidden; }
.kitchen-card img { width:100%; height:auto; aspect-ratio:3/2; object-fit:cover; transition:transform .3s; }
.kitchen-image-link:hover img { transform:scale(1.025); }
.kitchen-card .copy { padding:26px; }
.kitchen-card .eyebrow { margin:0 0 10px; font-size:.78rem; color:var(--gold); }
.finish-inquiry { display:inline-flex; min-height:44px; align-items:center; margin-top:14px; color:var(--forest); font-size:.9rem; font-weight:800; text-underline-offset:5px; }
.finish-inquiry:hover { text-decoration:underline; }
.home-kitchens { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; margin-top:36px; }
.image-note { color:var(--muted); font-size:.86rem; line-height:1.6; margin-top:24px; }
.finish-gallery { grid-template-columns:repeat(2,minmax(0,1fr)); grid-auto-rows:auto; gap:24px; }
.finish-gallery figure:nth-child(3n) { grid-column:auto; }
.finish-gallery figure { aspect-ratio:3/2; }
.finish-gallery figure a { display:block; height:100%; }
.finish-gallery figcaption span { display:block; font-size:.82rem; font-weight:500; }
a:focus-visible,button:focus-visible { outline:3px solid var(--gold); outline-offset:4px; }
@media(max-width:720px){.kitchen-grid,.home-kitchens,.finish-gallery{grid-template-columns:1fr}.kitchen-card .copy{padding:22px}.kitchen-card{scroll-margin-top:100px}.home-kitchens{gap:24px}}
/* Mayfair editorial collection: quiet ivory, warm charcoal, generous photography. */
:root{--ink:#292822;--forest:#37362f;--forest-2:#5c5142;--stone:#eeeae3;--paper:#faf8f3;--gold:#8a6c48;--muted:#706b61;--line:#d9d3c8;--radius:0;--max:1360px}
[hidden]{display:none!important}.topbar{background:#e9e4db;color:#554b3d;letter-spacing:.06em}.topbar a{color:#554b3d}.brand-copy strong{letter-spacing:.17em}.header{background:rgba(250,248,243,.97)}.nav-links{font-weight:500}.btn{font-size:.74rem;font-weight:600;letter-spacing:.12em}.floating-contact{display:none}.footer{background:#292822}.eyebrow{font-weight:500}.text-link{text-decoration:underline;text-underline-offset:6px;font-size:.9rem;display:inline-block;padding:10px 0}.text-button{border:0;background:none;color:var(--ink);text-decoration:underline;text-underline-offset:5px;padding:10px;font-size:.88rem}.editorial-intro{padding:60px 0 38px;display:flex;align-items:flex-end;justify-content:space-between;gap:40px}.editorial-intro h1{font-size:clamp(3.3rem,6vw,6.5rem);max-width:880px}.editorial-intro .intro-aside{max-width:290px}.editorial-hero{margin:0 24px;position:relative}.editorial-hero img{aspect-ratio:1.95;object-fit:cover}.editorial-caption{display:flex;justify-content:space-between;padding:16px 0;font-size:.8rem;letter-spacing:.07em;text-transform:uppercase}.editorial-section{padding:100px 0}.editorial-section .section-head h2{max-width:710px}.wide-story{margin:0 0 70px}.wide-story img{width:100%;aspect-ratio:1.85;object-fit:cover}.wide-story-copy{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:26px}.wide-story-copy h3{font-size:2.6rem}.wide-story-copy p{max-width:560px;color:var(--muted)}.editorial-pair{display:grid;grid-template-columns:1fr 1fr;gap:32px}.editorial-pair img{aspect-ratio:1.2;object-fit:cover}.editorial-pair h3{font-size:2rem;margin:22px 0 10px}.product-library-promo{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:60px;background:var(--stone);padding:50px}.product-library-promo img{aspect-ratio:1.3;object-fit:contain;max-height:500px}.product-library-promo p{margin:22px 0}.finish-nav{display:flex;flex-wrap:wrap;gap:12px 28px;border-block:1px solid var(--line);padding:20px 0;margin-bottom:60px}.finish-nav a{font-size:.85rem}.finish-story{display:grid;grid-template-columns:1.6fr 1fr;gap:55px;align-items:center;margin:0 0 90px;scroll-margin-top:110px}.finish-story:nth-child(even){grid-template-columns:1fr 1.6fr}.finish-story:nth-child(even) .finish-photo{order:2}.finish-story img{aspect-ratio:1.35;object-fit:cover}.finish-story h2{font-size:clamp(2.3rem,4vw,4rem);margin:12px 0 22px}.finish-story .lede{font-size:1rem}.finish-dot{display:inline-block;width:24px;height:24px;border-radius:50%;border:1px solid #ccc;vertical-align:middle;margin-right:12px}.catalog-intro{padding:65px 0 55px}.catalog-intro h1{font-size:clamp(3.4rem,6vw,6.2rem)}.intro-bottom{display:flex;justify-content:space-between;gap:32px;align-items:end;margin-top:30px}.catalog-tools{display:grid;grid-template-columns:2fr 1fr 1fr auto;gap:18px;align-items:end;border-block:1px solid var(--line);padding:24px 0}.catalog-tools label{font-size:.76rem;letter-spacing:.06em;text-transform:uppercase}.catalog-tools input,.catalog-tools select{display:block;width:100%;min-height:48px;border:1px solid var(--line);padding:10px;margin-top:9px;background:var(--paper);color:var(--ink)}.catalog-meta{display:flex;justify-content:space-between;margin:24px 0 12px;font-size:.85rem}.catalog-meta a{text-decoration:underline}.catalog-note{font-size:.8rem;color:var(--muted);max-width:850px;margin:0 0 32px}.catalog-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:42px 24px;padding-bottom:80px}.item-picture{background:#f0ece5;overflow:hidden}.item-picture img{aspect-ratio:1.11;object-fit:contain;transition:transform .3s}.item-card a:hover img{transform:scale(1.035)}.item-title{display:flex;justify-content:space-between;align-items:center;margin:15px 0 8px}.item-title strong{font-size:.9rem;letter-spacing:.07em}.item-title span{font-size:.72rem;color:var(--muted)}.item-card h3{font-family:inherit;font-size:.93rem;letter-spacing:0;line-height:1.5}.item-dimensions{font-size:.86rem;margin-top:10px}.item-dimensions small{display:block;color:var(--muted);font-size:.68rem}.item-status{margin-top:12px;font-size:.74rem;color:var(--gold)}.product-breadcrumb{font-size:.8rem;padding-top:28px;color:var(--muted)}.product-detail{display:grid;grid-template-columns:1.1fr 1fr;gap:65px;padding-top:35px;padding-bottom:70px}.product-copy h1{font-size:clamp(2.2rem,3.4vw,3.8rem);margin:15px 0 24px}.model-code{font-size:1rem;letter-spacing:.12em}.product-description{color:var(--muted);line-height:1.8}.model-stage{background:#ede8df}.model-stage canvas{display:block;width:100%;height:500px;touch-action:none;cursor:grab}.model-controls{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:15px;padding-top:18px}.model-controls label{font-size:.78rem}.model-controls input,.model-controls select{display:block;margin-top:8px;max-width:180px}.model-controls select{border:1px solid var(--line);padding:8px;background:var(--paper)}.dimension-list{display:grid;grid-template-columns:repeat(3,1fr);border-block:1px solid var(--line);padding:20px 0;margin:30px 0 15px}.dimension-list dt{font-size:.72rem;text-transform:uppercase;color:var(--muted);letter-spacing:.12em}.dimension-list dd{font-family:Georgia,serif;font-size:1.85rem;margin:5px 0 0}.spec-status{font-size:.8rem;color:var(--muted);margin-bottom:15px}.product-copy>p:not(.eyebrow):not(.model-code):not(.product-description){font-size:.85rem}.product-actions{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin:30px 0}.source-links{border-top:1px solid var(--line);padding-top:20px;display:flex;flex-direction:column;gap:10px;font-size:.8rem}.source-links a{text-decoration:underline;text-underline-offset:4px}.technical-image{display:block;background:white}.technical-image img{max-height:550px;object-fit:contain}.story-columns{display:grid;grid-template-columns:1fr 1fr;gap:90px}.story-columns h3{font-family:inherit;font-size:1rem;margin-bottom:16px}.story-columns p{color:var(--muted);margin-bottom:32px}.product-story{background:var(--stone)}.product-context{position:relative;margin:45px 24px}.product-context img{aspect-ratio:2.6;object-fit:cover;filter:brightness(.6)}.product-context>div{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;color:white;padding:24px}.product-context .eyebrow{color:#f0e3cf}.product-context h2{margin-bottom:26px}.cabinet-list-section{background:var(--stone)}.cabinet-list-section h2{margin-bottom:20px}.list-row{display:grid;grid-template-columns:1fr 70px 80px;gap:20px;align-items:center;padding:20px 0;border-bottom:1px solid var(--line)}.list-row input{width:70px;padding:8px;border:1px solid var(--line)}#cabinet-list{margin:24px 0}.list-actions{display:flex;gap:16px}.gallery-editorial{display:grid;grid-template-columns:1fr 1fr;gap:45px 30px}.gallery-editorial figure{margin:0}.gallery-editorial figure:first-child,.gallery-editorial figure:nth-child(4n){grid-column:1/-1}.gallery-editorial img{aspect-ratio:1.5;object-fit:cover}.gallery-editorial figure:first-child img,.gallery-editorial figure:nth-child(4n) img{aspect-ratio:1.95}.gallery-editorial figcaption{display:flex;justify-content:space-between;gap:15px;padding:16px 0;font-size:.9rem}.gallery-editorial figcaption a{text-decoration:underline}.photo-open{padding:0;border:0;background:none;width:100%;cursor:zoom-in}#photo-dialog{padding:18px;border:0;max-width:95vw;background:var(--paper)}#photo-dialog::backdrop{background:rgba(0,0,0,.8)}#photo-dialog img{max-height:80vh;width:auto;max-width:90vw}#photo-dialog button{float:right;margin-bottom:12px}.download-bar{display:flex;justify-content:space-between;border-block:1px solid var(--line);padding:25px 0;gap:25px;flex-wrap:wrap}
@media(min-width:1271px){.nav-links{gap:17px}.nav{gap:18px}}
@media(max-width:1000px){.catalog-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.product-detail{gap:30px}.model-stage canvas{height:410px}.product-library-promo{gap:25px}.finish-story{gap:30px}}
@media(max-width:720px){.editorial-intro{display:block;padding-top:38px}.editorial-intro .intro-aside{max-width:100%;margin-top:25px}.editorial-hero{margin:0 15px}.editorial-hero img{aspect-ratio:1.1}.editorial-caption{font-size:.63rem;gap:16px}.editorial-section{padding:65px 0}.wide-story-copy,.editorial-pair,.finish-story,.finish-story:nth-child(even),.product-library-promo,.product-detail,.story-columns{grid-template-columns:1fr;gap:26px}.finish-story:nth-child(even) .finish-photo{order:0}.finish-story{margin-bottom:65px}.wide-story img{aspect-ratio:1.3}.wide-story-copy h3{font-size:2rem}.product-library-promo{padding:25px}.intro-bottom{display:block}.intro-bottom .text-link{margin-top:18px}.catalog-tools{grid-template-columns:1fr 1fr;gap:12px}.catalog-tools label:first-child{grid-column:1/-1}.catalog-tools button{grid-column:1/-1;justify-self:start}.catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:30px 15px}.catalog-meta{font-size:.73rem;gap:15px}.item-title{align-items:start;gap:5px;flex-direction:column}.item-title span{display:none}.item-card h3{font-size:.8rem}.item-dimensions{font-size:.75rem}.item-status{font-size:.65rem}.product-copy h1{font-size:2.6rem}.model-stage canvas{height:410px}.product-context img{aspect-ratio:1.05}.product-context{margin:25px 15px}.gallery-editorial{grid-template-columns:1fr;gap:25px}.gallery-editorial img,.gallery-editorial figure:first-child img,.gallery-editorial figure:nth-child(4n) img{aspect-ratio:1.35}.gallery-editorial figcaption{font-size:.8rem}.gallery-editorial figure{grid-column:auto}.list-row{gap:10px;grid-template-columns:1fr 58px 65px;font-size:.8rem}.list-row input{width:58px}.list-actions{flex-direction:column}.story-columns{gap:40px}}

/* Clear driving-directions entry beside the showroom address. */
a.google-directions,.footer-links a.google-directions,.contact-details a.google-directions{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-height:44px;width:fit-content;max-width:100%;margin:10px 0 3px;padding:10px 15px;background:#37362f;color:#fff;border:1px solid #8d877a;font-size:.875rem;font-weight:500;line-height:1.5;text-decoration:none}
a.google-directions:hover{background:#514b40;text-decoration:none}
