/* Nova Tile & Carpet 2026 redesign.
   Design system from the approved mockup (build/redesign-mockup.png).
   Sections: tokens, base, layout, buttons, header, home sections, footer, restored-page components, motion. */

/* ------------------------------------------------------------------ tokens */
:root {
  --nv-ink: #1f2123;
  --nv-text: #3d4043;
  --nv-muted: #5f6368;
  --nv-dark: #25282a;
  --nv-dark-2: #2d3032;
  --nv-gold: #94712f;          /* CTA fill: white text passes AA (4.5:1) */
  --nv-gold-hover: #7c5d25;
  --nv-gold-text: #8a6a33;     /* gold labels on light backgrounds */
  --nv-gold-light: #c9a466;    /* gold on dark backgrounds */
  --nv-cream: #f6f4ef;
  --nv-surface: #f1eee8;
  --nv-line: #e3ded4;
  --nv-line-dark: rgba(255, 255, 255, 0.14);
  --nv-white: #ffffff;
  --nv-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --nv-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nv-container: 1304px;
  --nv-gutter: 24px;
  --nv-section: clamp(40px, 3.6vw, 56px);
  --nv-header-h: 80px;
  --nv-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* -------------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nv-header-h) + 16px); }
body { margin: 0; background: var(--nv-white); color: var(--nv-text); font-family: var(--nv-sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--nv-gold-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--nv-ink); }
h1, h2, h3, h4, h5, h6 { font-family: var(--nv-serif); color: var(--nv-ink); font-weight: 500; line-height: 1.18; letter-spacing: -0.01em; margin: 0 0 0.5em; }
h1 strong, h2 strong, h3 strong, h4 strong { font-weight: inherit; color: inherit; }
h1 { font-size: clamp(36px, 4.1vw, 58px); }
h2 { font-size: clamp(26px, 2.2vw, 32px); }
h3 { font-size: clamp(19px, 1.5vw, 22px); }
h4 { font-size: 18px; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
b, strong { font-weight: 600; color: var(--nv-ink); }
hr { border: 0; margin: 0; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--nv-gold); outline-offset: 3px; }
.screen-reader-text, .nv-sr { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; white-space: nowrap; }
.skip-link:focus { clip: auto; clip-path: none; height: auto; width: auto; left: 12px; top: 12px; z-index: 100000; background: #fff; color: var(--nv-ink); padding: 12px 20px; font-weight: 600; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }

/* Twenty Twenty-Five wrappers add no spacing or width limits */
.wp-site-blocks { padding: 0 !important; }
.wp-site-blocks > *, .wp-site-blocks > * + *, .wp-block-post-content > *, .wp-block-post-content > * + * { margin-block-start: 0; margin-block-end: 0; }
:root :where(.is-layout-constrained) > * { max-width: none; }

/* ------------------------------------------------------------------ layout */
.nv-container { width: 100%; max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); }
.nv-section { padding: var(--nv-section) 0; }
.nv-section--cream { background: var(--nv-cream); }
.nv-section--dark { background: var(--nv-dark); color: #c9ccce; }
.nv-section--dark h2, .nv-section--dark h3 { color: var(--nv-white); }
.nv-eyebrow { display: block; font-family: var(--nv-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-gold-text); margin: 0 0 12px; }
.nv-section--dark .nv-eyebrow { color: var(--nv-gold-light); }
.nv-head { margin-bottom: 24px; }
.nv-head h2 { margin: 0; }
.nv-lede { color: var(--nv-muted); max-width: 470px; }
.nv-split { display: grid; grid-template-columns: minmax(260px, 1fr) 1.8fr; gap: clamp(28px, 4vw, 64px); align-items: center; }

/* ----------------------------------------------------------------- buttons */
.nv-btn, .cms-button-primary, .nova-form .gform_button, input[type=submit] {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 24px;
  border: 1px solid var(--nv-gold); border-radius: 2px; background: var(--nv-gold); color: var(--nv-white);
  font-family: var(--nv-sans); font-size: 14px; font-weight: 600; letter-spacing: 0.01em; line-height: 1.2; text-decoration: none; text-transform: none;
  cursor: pointer; transition: background-color 0.2s var(--nv-ease), border-color 0.2s var(--nv-ease), color 0.2s var(--nv-ease);
}
.nv-btn:hover, .cms-button-primary:hover, .nova-form .gform_button:hover, input[type=submit]:hover { background: var(--nv-gold-hover); border-color: var(--nv-gold-hover); color: var(--nv-white); }
.nv-btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.2s var(--nv-ease); }
.nv-btn:hover svg { transform: translateX(3px); }
.nv-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.85); color: var(--nv-white); }
.nv-btn--ghost:hover { background: var(--nv-white); border-color: var(--nv-white); color: var(--nv-ink); }
.nv-btn--line { background: transparent; border-color: var(--nv-ink); color: var(--nv-ink); }
.nv-btn--line:hover { background: var(--nv-ink); border-color: var(--nv-ink); color: var(--nv-white); }
.nv-btn--sm { min-height: 42px; padding: 10px 20px; font-size: 13px; }
.nv-btns { display: flex; flex-wrap: wrap; gap: 14px; }
/* text link with arrow (restored pages used .cms-button-simple for this) */
.cms-button-simple, .nv-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--nv-ink); text-decoration: none; border-bottom: 1px solid var(--nv-gold); padding: 4px 0; text-transform: none; letter-spacing: 0; background: none; border-radius: 0; min-height: 0; }
.cms-button-simple:hover, .nv-link:hover { color: var(--nv-gold-text); }

/* ------------------------------------------------------------------ header */
.nv-header { position: sticky; top: 0; z-index: 50; background: var(--nv-white); border-bottom: 1px solid transparent; transition: box-shadow 0.2s var(--nv-ease), border-color 0.2s var(--nv-ease); }
.nv-header.is-scrolled { border-color: var(--nv-line); box-shadow: 0 6px 24px rgba(31, 33, 35, 0.06); }
.nv-header__bar { display: flex; align-items: center; gap: 24px; height: var(--nv-header-h); }
.nv-logo { flex: none; display: block; line-height: 0; }
.nv-logo img { width: 160px; height: auto; }
.nv-nav { margin-left: auto; }
.nv-nav ul { list-style: none; margin: 0; padding: 0; }
.nv-nav > div > ul, .nv-nav > ul { display: flex; align-items: center; gap: clamp(14px, 2vw, 34px); }
.nv-nav li { position: relative; }
.nv-nav a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; color: var(--nv-ink); font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.nv-nav a:hover, .nv-nav .current-menu-item > a, .nv-nav .current-menu-ancestor > a { color: var(--nv-gold-text); }
.nv-nav .menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); margin-left: 2px; }
.nv-nav .sub-menu { position: absolute; top: 100%; left: -18px; min-width: 230px; padding: 10px 0; background: var(--nv-white); border: 1px solid var(--nv-line); box-shadow: 0 16px 40px rgba(31, 33, 35, 0.1); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.18s var(--nv-ease), transform 0.18s var(--nv-ease), visibility 0.18s; }
.nv-nav li:hover > .sub-menu, .nv-nav li:focus-within > .sub-menu, .nv-nav li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.nv-nav .sub-menu a { display: block; padding: 9px 18px; font-size: 14px; }
.nv-nav .sub-menu a:hover { background: var(--nv-cream); }
.nv-header__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--nv-ink); font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.nv-header__phone svg { width: 17px; height: 17px; }
.nv-burger { display: none; align-items: center; gap: 10px; min-height: 44px; padding: 8px 4px; margin-left: auto; background: none; border: 0; color: var(--nv-ink); font-size: 14px; font-weight: 600; cursor: pointer; }
.nv-burger span { display: block; width: 24px; height: 2px; background: currentColor; position: relative; }
.nv-burger span::before, .nv-burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: currentColor; }
.nv-burger span::before { top: -7px; } .nv-burger span::after { top: 7px; }
/* mobile drawer */
.nv-drawer { position: fixed; inset: 0; z-index: 100; display: flex; justify-content: flex-end; background: rgba(31, 33, 35, 0.45); }
.nv-drawer[hidden] { display: none; }
.nv-drawer__panel { width: min(400px, 100%); height: 100%; overflow-y: auto; background: var(--nv-white); padding: 20px 24px 32px; display: flex; flex-direction: column; gap: 20px; }
.nv-drawer__top { display: flex; justify-content: space-between; align-items: center; }
.nv-drawer__close { width: 44px; height: 44px; border: 0; background: none; font-size: 30px; line-height: 1; cursor: pointer; color: var(--nv-ink); }
.nv-drawer ul { list-style: none; margin: 0; padding: 0; }
.nv-drawer li { border-bottom: 1px solid var(--nv-line); position: relative; }
.nv-drawer a { display: block; padding: 14px 48px 14px 0; color: var(--nv-ink); font-size: 16px; font-weight: 500; text-decoration: none; }
.nv-drawer .sub-menu { display: none; padding: 0 0 10px 14px; }
.nv-drawer .sub-menu li { border: 0; }
.nv-drawer .sub-menu a { padding: 9px 0; font-size: 15px; color: var(--nv-text); }
.nv-drawer li.is-open > .sub-menu { display: block; }
.nv-sub-toggle { position: absolute; top: 4px; right: 0; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.nv-sub-toggle::before { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--nv-ink); border-bottom: 1.5px solid var(--nv-ink); transform: translate(-50%, -70%) rotate(45deg); transition: transform 0.2s; }
li.is-open > .nv-sub-toggle::before { transform: translate(-50%, -30%) rotate(-135deg); }
.nv-drawer__cta { display: grid; gap: 12px; margin-top: auto; }
.nv-no-scroll { overflow: hidden; }

/* -------------------------------------------------------------------- hero */
.nv-hero { position: relative; display: flex; align-items: center; min-height: clamp(440px, 32vw, 620px); color: var(--nv-white); overflow: hidden; background: var(--nv-dark); }
.nv-hero__media, .nv-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.nv-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(24, 22, 19, 0.82) 0%, rgba(24, 22, 19, 0.6) 34%, rgba(24, 22, 19, 0.12) 64%, rgba(24, 22, 19, 0) 100%); }
.nv-hero__inner { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 48px; }
.nv-hero__content { max-width: 560px; }
.nv-hero .nv-eyebrow { color: var(--nv-white); letter-spacing: 0.24em; }
.nv-hero h1 { color: var(--nv-white); margin: 0 0 18px; font-size: clamp(38px, 4.3vw, 62px); max-width: 9.2em; }
.nv-hero__text { font-size: clamp(16px, 1.25vw, 18px); color: rgba(255, 255, 255, 0.92); max-width: 520px; margin-bottom: 30px; }
.nv-hero__note { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.9); }
.nv-hero__note svg { width: 16px; height: 16px; flex: none; }

/* --------------------------------------------------------------- trust bar */
.nv-trust { background: var(--nv-cream); padding: 22px 0; }
.nv-trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.nv-trust li { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 12px 16px; text-align: center; font-size: 15px; font-weight: 500; color: var(--nv-ink); line-height: 1.4; }
.nv-trust li + li { border-left: 1px solid var(--nv-line); }
.nv-icon { width: 34px; height: 34px; color: var(--nv-ink); flex: none; }

/* -------------------------------------------------------------- categories */
.nv-cats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.nv-card { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--nv-line); background: var(--nv-white); color: var(--nv-ink); text-decoration: none; overflow: hidden; transition: border-color 0.25s var(--nv-ease), box-shadow 0.25s var(--nv-ease); }
.nv-card:hover { color: var(--nv-ink); border-color: #cfc6b6; box-shadow: 0 14px 32px rgba(31, 33, 35, 0.08); }
.nv-card__media { position: relative; overflow: hidden; aspect-ratio: 1.17; background: var(--nv-surface); }
.nv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nv-ease); }
.nv-card:hover .nv-card__media img { transform: scale(1.04); }
.nv-card__label { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; background: var(--nv-cream); font-size: 15px; font-weight: 500; }
.nv-card__label svg { width: 16px; height: 16px; flex: none; transition: transform 0.2s var(--nv-ease); }
.nv-card:hover .nv-card__label svg { transform: translateX(3px); }
.nv-card--wide .nv-card__media { aspect-ratio: 1.45; }
.nv-card--wide .nv-card__label { font-size: 14px; padding: 12px 14px; background: var(--nv-white); }
.nv-cards3 { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.nv-card__meta { display: block; font-size: 12px; font-weight: 400; color: var(--nv-muted); margin-top: 2px; }
.nv-card--project .nv-card__media { aspect-ratio: 1.68; }
.nv-card--project .nv-card__label { display: block; background: var(--nv-surface); font-size: 14px; font-weight: 600; padding: 12px 14px; }

/* ------------------------------------------------------------------- rooms */
.nv-rooms { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.nv-room { position: relative; display: block; aspect-ratio: 1.27; overflow: hidden; color: var(--nv-white); text-decoration: none; background: var(--nv-surface); }
.nv-room img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nv-ease); }
.nv-room::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(20, 20, 20, 0.62), rgba(20, 20, 20, 0)); }
.nv-room span { position: absolute; left: 16px; bottom: 12px; z-index: 1; font-size: 15px; font-weight: 600; }
.nv-room:hover { color: var(--nv-white); }
.nv-room:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------- why */
.nv-why { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.nv-why ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.nv-why li { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 8px 10px; text-align: center; font-size: 14px; font-weight: 500; color: var(--nv-ink); line-height: 1.4; }
.nv-why li + li { border-left: 1px solid var(--nv-line); }

/* ----------------------------------------------------------------- process */
.nv-steps { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); counter-reset: step; }
.nv-steps li { padding: 0 24px; }
.nv-steps li:first-child { padding-left: 0; }
.nv-steps li + li { border-left: 1px solid var(--nv-line-dark); }
.nv-steps__num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--nv-gold-light); color: var(--nv-dark); font-family: var(--nv-serif); font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.nv-steps h3 { font-family: var(--nv-sans); font-size: 16px; font-weight: 600; color: var(--nv-white); margin: 0 0 8px; letter-spacing: 0; }
.nv-steps p { font-size: 14px; color: #bfc3c6; margin: 0; }

/* --------------------------------------------------------------- showroom */
.nv-showroom { display: grid; grid-template-columns: 0.95fr 1.65fr; background: var(--nv-dark); color: #c9ccce; }
.nv-showroom__media { position: relative; min-height: 340px; }
.nv-showroom__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nv-showroom__body { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: clamp(36px, 4vw, 56px) clamp(24px, 5vw, 80px); }
.nv-showroom h2 { color: var(--nv-white); margin-bottom: 8px; }
.nv-showroom__lede { margin: 0 0 22px; max-width: 460px; }
.nv-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.nv-facts li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; font-size: 15px; line-height: 1.5; }
.nv-facts svg { width: 20px; height: 20px; margin-top: 1px; color: var(--nv-white); }
.nv-facts a { color: var(--nv-white); text-decoration: none; }
.nv-facts a:hover { color: var(--nv-gold-light); text-decoration: underline; }
.nv-showroom__actions { display: grid; gap: 14px; min-width: 230px; }

/* ------------------------------------------------------------------ CTA band */
.nv-cta { position: relative; overflow: hidden; background: #2b2520; color: rgba(255, 255, 255, 0.9); }
.nv-cta__media, .nv-cta__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nv-cta::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(33, 27, 22, 0.9) 0%, rgba(33, 27, 22, 0.72) 55%, rgba(33, 27, 22, 0.5) 100%); }
.nv-cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.25fr; gap: 32px; align-items: center; padding-top: clamp(44px, 5vw, 72px); padding-bottom: clamp(44px, 5vw, 72px); }
.nv-cta h2 { color: var(--nv-white); margin: 0; max-width: 11.5em; }
.nv-cta p { margin: 0 0 20px; max-width: 420px; }
.nv-cta .nv-btn svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ footer */
.nv-footer { background: var(--nv-dark); color: #bfc3c6; font-size: 14px; }
.nv-footer__grid { display: grid; grid-template-columns: 1.55fr 0.8fr 1fr 1fr 1.4fr; gap: 36px; padding-top: clamp(48px, 5vw, 64px); padding-bottom: 44px; }
.nv-footer__brand img { width: 150px; margin-bottom: 18px; }
.nv-footer__brand p { max-width: 280px; line-height: 1.6; }
.nv-footer h2 { font-family: var(--nv-sans); font-size: 15px; font-weight: 600; color: var(--nv-white); letter-spacing: 0; margin: 4px 0 16px; }
.nv-footer ul { list-style: none; margin: 0; padding: 0; }
.nv-footer li { margin: 0 0 8px; }
.nv-footer a { color: #bfc3c6; text-decoration: none; }
.nv-footer a:hover { color: var(--nv-white); text-decoration: underline; }
.nv-footer .nv-facts li { font-size: 14px; }
.nv-footer .nv-facts svg { width: 18px; height: 18px; }
.nv-social { display: flex; gap: 8px; margin-top: 18px; }
.nv-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--nv-line-dark); border-radius: 50%; color: var(--nv-white); }
.nv-social a:hover { border-color: var(--nv-gold-light); color: var(--nv-gold-light); }
.nv-social svg { width: 17px; height: 17px; }
.nv-footer__bottom { border-top: 1px solid var(--nv-line-dark); }
.nv-footer__bottom .nv-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 20px; padding-bottom: 20px; font-size: 13px; }
.nv-footer__bottom ul { display: flex; gap: 0; }
.nv-footer__bottom li { margin: 0; }
.nv-footer__bottom li + li::before { content: "|"; margin: 0 12px; color: #6d7276; }

/* ----------------------------------------------------------- breadcrumbs */
.nv-crumbs { background: var(--nv-cream); border-bottom: 1px solid var(--nv-line); font-size: 13px; }
.nv-crumbs ol { list-style: none; margin: 0; padding: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; color: var(--nv-muted); }
.nv-crumbs li + li::before { content: "/"; margin-right: 6px; color: #a7a39b; }
.nv-crumbs a { color: var(--nv-muted); text-decoration: none; }
.nv-crumbs a:hover { color: var(--nv-ink); text-decoration: underline; }
.nv-crumbs [aria-current] { color: var(--nv-ink); }

/* ================================================================
   Restored pages: the original page markup, restyled in this system
   ================================================================ */
.content { position: relative; }
.flexGrid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px 0; width: 100%; max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); position: relative; }
.flexGrid.vertAlign { align-items: center; }
.flexGrid section { position: relative; min-width: 0; }
.oneCol > section, .oneColNarrow > section, .oneColWide > section { flex-basis: 100%; width: 100%; }
.oneColNarrow { max-width: 848px; }
.twoCol > section { flex-basis: 47%; }
.twoThirds > section { flex-basis: 61%; }
.twoThirds > section:last-child { flex-basis: 32%; }
.fourCol > section { flex-basis: 23%; }
hr.spacer100 { height: clamp(48px, 5.5vw, 80px); }
hr.spacer80 { height: clamp(40px, 4.5vw, 64px); }
hr.spacer60 { height: clamp(32px, 3.5vw, 48px); }
hr.spacer40 { height: 28px; }
hr.spacer20 { height: 14px; }
.centered { text-align: center; }
.intro { max-width: 700px; margin: 0 auto; padding: 0 var(--nv-gutter); text-align: center; }
.intro p { color: var(--nv-muted); }
.intro p strong { color: var(--nv-ink); }
.fullImg { width: 100%; height: auto; }
/* the original lowercase script-font kicker becomes the mockup's eyebrow label */
p.script { font-family: var(--nv-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-gold-text); margin: 0 0 12px; }
p.script a { color: inherit; text-decoration: none; }
h2.sa { margin-top: 0; }
h4.title { font-family: var(--nv-sans); font-size: 18px; font-weight: 600; margin: 0 0 12px; }
h4.title strong { color: var(--nv-ink); }
.alignnone, .aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; margin: 0 auto 1.5em; }
.wp-caption-text { font-size: 13px; color: var(--nv-muted); margin-top: 8px; }
.alignleft { float: left; margin: 6px 24px 16px 0; }

/* page title band (mockup hero treatment) */
.pageTitle { position: relative; display: flex; align-items: flex-end; min-height: clamp(240px, 22vw, 340px); padding: 56px 0 48px; overflow: hidden; background-color: var(--nv-dark); background-image: var(--nv-title-img); background-size: cover !important; background-position: center center !important; }
.pageTitle.lgTitle { min-height: clamp(280px, 28vw, 420px); }
.pageTitle::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 22, 19, 0.82) 0%, rgba(24, 22, 19, 0.55) 45%, rgba(24, 22, 19, 0.2) 100%); }
.pageTitle > section { position: relative; z-index: 1; width: 100%; max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); }
.pageTitle p.script { color: var(--nv-white); letter-spacing: 0.24em; }
.pageTitle p.script a { color: var(--nv-white); }
.pageTitle h1 { color: var(--nv-white); margin: 0; max-width: 820px; font-size: clamp(34px, 3.6vw, 52px); }

.sectionTitle { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; width: 100%; max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); }
.sectionTitle h2 { margin: 0; }
.sectionTitle p { margin: 0; }

/* intro split and two-column copy */
.staggeredWide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(28px, 5vw, 72px); max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); }
.staggeredWide > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.staggeredWide section { padding: 0; }

/* highlight columns (design, installation, green) */
.highlightsInternal { max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter); }
.highlightsInternal ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--nv-line); border-bottom: 1px solid var(--nv-line); }
.highlightsInternal li { padding: 32px 28px; }
.highlightsInternal li + li { border-left: 1px solid var(--nv-line); }
.highlightsInternal img { width: 40px; height: 40px; margin-bottom: 16px; }
.highlightsInternal h3 { margin: 0 0 8px; }
.highlightsInternal p { margin: 0; color: var(--nv-muted); font-size: 15px; }

/* benefits: image slider + accordion on a cream band */
.benefits { background: var(--nv-cream); padding: var(--nv-section) 0; }
.benefits .flexGrid { align-items: center; }
.benefits .flexGrid > section, .benefits .flexGrid > div { flex-basis: 47%; min-width: 0; }
.benefits.benefitsReverse .flexGrid { flex-direction: row-reverse; }
.benefitSlides { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--nv-surface); }
.benefitSlides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.benefitSlides img.is-active { opacity: 1; }
.nv-dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; display: flex; justify-content: center; gap: 8px; }
.nv-dots button { width: 24px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
.nv-dots button::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.6); }
.nv-dots button[aria-current="true"]::before { background: var(--nv-white); }

/* accordion (was jQuery UI; now native buttons added by nova.js) */
.accordion { border-top: 1px solid var(--nv-line); margin: 8px 0 0; }
.accordion > h3 { margin: 0; font-family: var(--nv-sans); font-size: 16px; font-weight: 600; letter-spacing: 0; border-bottom: 1px solid var(--nv-line); }
.accordion > h3 button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; background: none; border: 0; text-align: left; color: var(--nv-ink); font: inherit; cursor: pointer; }
.accordion > h3 button::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat; transition: transform 0.2s var(--nv-ease); }
.accordion > h3 button[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion > h3 button:hover { color: var(--nv-gold-text); }
.accordion > div, .accordion > p { padding: 0 0 20px; margin: 0; color: var(--nv-text); border-bottom: 1px solid var(--nv-line); }
.accordion > div[hidden], .accordion > p[hidden] { display: none; }
.accordion > div p:last-child { margin-bottom: 0; }

/* product cards (popular styles and specials) */
.specialSlide { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; max-width: var(--nv-container); margin: 0 auto; padding: 0 var(--nv-gutter) 4px; }
.specialSlide::-webkit-scrollbar { display: none; }
.specialSlide > div { flex: 0 0 calc((100% - 48px) / 4); scroll-snap-align: start; min-width: 240px; }
.specialSlide section { position: relative; display: flex; align-items: flex-end; aspect-ratio: 0.9; padding: 0; background-size: cover !important; background-position: center !important; overflow: hidden; }
.specialSlide section::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(20, 20, 20, 0.85), rgba(20, 20, 20, 0)); transition: inset 0.3s var(--nv-ease); }
.specialSlide section:hover::after, .specialSlide section:focus-within::after { inset: 0; background: rgba(20, 20, 20, 0.72); }
.specialSlide section > div { position: relative; z-index: 1; padding: 22px; color: var(--nv-white); width: 100%; }
.specialSlide h3 { color: var(--nv-white); font-size: 21px; margin: 0 0 2px; }
.specialSlide section p { color: rgba(255, 255, 255, 0.85); font-size: 13px; margin: 0; text-transform: capitalize; }
.specialSlide ol { list-style: none; margin: 12px 0 14px; padding: 0; font-size: 13px; color: rgba(255, 255, 255, 0.9); }
.specialSlide ol strong { color: var(--nv-white); font-weight: 600; display: inline-block; min-width: 92px; }
.specialSlide a { color: var(--nv-white); border-color: var(--nv-gold-light); font-size: 13px; }
.specialSlide a:hover { color: var(--nv-gold-light); }
.specialSlide.specialList { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; gap: 20px; }
.specialSlide.specialList > div { min-width: 0; }
.specialSlide.specialList > div[hidden] { display: none; }
.nv-carousel { position: relative; }
.nv-carousel__nav { display: flex; justify-content: flex-end; gap: 8px; max-width: var(--nv-container); margin: 14px auto 0; padding: 0 var(--nv-gutter); }
.nv-carousel__nav button { width: 44px; height: 44px; border: 1px solid var(--nv-line); background: var(--nv-white); cursor: pointer; display: grid; place-items: center; color: var(--nv-ink); }
.nv-carousel__nav button:hover { border-color: var(--nv-ink); }
.nv-carousel__nav svg { width: 16px; height: 16px; }
.filter ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin: 0 0 28px; padding: 0; font-size: 14px; }
.filter li:first-child { color: var(--nv-muted); margin-right: 6px; }
.filter a { display: inline-block; padding: 8px 16px; border: 1px solid var(--nv-line); color: var(--nv-ink); text-decoration: none; font-weight: 500; }
.filter a:hover, .filter a.active { border-color: var(--nv-ink); background: var(--nv-ink); color: var(--nv-white); }
.specialSpecs { list-style: none; margin: 22px 0; padding: 0; border-top: 1px solid var(--nv-line); }
.specialSpecs li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--nv-line); margin: 0; }
.specialSpecs strong { min-width: 120px; color: var(--nv-ink); }

/* supplier logos */
.fourCol { align-items: center; }
.fourCol a { display: block; }
.fourCol img { margin: 0 auto; max-height: 110px; width: auto; object-fit: contain; }
.fourCol p { margin: 0; }
.supplierName { display: flex; align-items: center; justify-content: center; min-height: 110px; padding: 16px; border: 1px solid var(--nv-line); color: var(--nv-ink); font-family: var(--nv-serif); font-size: 20px; text-align: center; transition: border-color 0.2s; }
a:hover .supplierName { border-color: var(--nv-gold); color: var(--nv-gold-text); }

/* gallery + lightbox */
.nova-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.nova-gallery a { display: block; aspect-ratio: 5 / 3; overflow: hidden; background: var(--nv-surface); }
.nova-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--nv-ease); }
.nova-gallery a:hover img { transform: scale(1.04); }
.nova-lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 60px 72px; background: rgba(20, 20, 20, 0.94); }
.nova-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.nova-lightbox button { position: absolute; width: 48px; height: 48px; border: 0; background: transparent; color: #fff; font-size: 36px; line-height: 1; cursor: pointer; }
.nova-lightbox .lb-close { top: 12px; right: 12px; }
.nova-lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.nova-lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* blog */
ul.posts { list-style: none; margin: 0 auto; padding: 0 var(--nv-gutter); max-width: var(--nv-container); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
ul.posts li { margin: 0; border: 1px solid var(--nv-line); display: flex; flex-direction: column; }
ul.posts img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
ul.posts section { padding: 22px; display: flex; flex-direction: column; flex: 1; }
ul.posts h3 { margin: 0 0 8px; }
ul.posts h3 a { color: var(--nv-ink); text-decoration: none; }
ul.posts h3 a:hover { color: var(--nv-gold-text); }
ul.posts p.meta, p.meta { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nv-gold-text); margin: 0 0 10px; }
ul.posts p.meta a { color: inherit; text-decoration: none; }
ul.posts p { color: var(--nv-muted); font-size: 15px; }
ul.posts p:last-child { margin: auto 0 0; }
ul.feedNav { list-style: none; display: flex; justify-content: space-between; max-width: var(--nv-container); margin: 32px auto 0; padding: 0 var(--nv-gutter); }
.relatedPosts ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.relatedPosts li { padding: 22px; border: 1px solid var(--nv-line); margin: 0; }
.relatedPosts h3 { margin: 0 0 8px; }
.relatedPosts h3 a { color: var(--nv-ink); text-decoration: none; }
article h2 { margin-top: 1.4em; }
article h2.top { margin-top: 0; }

/* map */
iframe[src*="google.com/maps"] { width: 100%; min-height: 280px; border: 0; }

/* ------------------------------------------------------------------ forms */
.nova-form { max-width: 100%; }
.nova-form .gform_required_legend { font-size: 13px; color: var(--nv-muted); margin-bottom: 20px; }
.nova-form .gfield_required { color: #9b2c2c; margin-left: 3px; }
.nova-form .gform_fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px 20px; }
.nova-form .gfield { grid-column: span 2; margin: 0; min-width: 0; }
.nova-form .gfield--width-half { grid-column: span 1; }
.nova-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.nova-form .gfield_label { display: block; font-size: 14px; font-weight: 600; color: var(--nv-ink); margin: 0 0 8px; padding: 0; }
.nova-form .ginput_complex { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.nova-form .ginput_complex span { display: flex; flex-direction: column; }
.nova-form .ginput_complex label { font-size: 12px; color: var(--nv-muted); margin-top: 5px; }
.nova-form input[type=text], .nova-form input[type=email], .nova-form input[type=tel], .nova-form input[type=date], .nova-form input[type=time], .nova-form select, .nova-form textarea {
  width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid #cfc8bb; border-radius: 2px; background: var(--nv-white); color: var(--nv-ink); font: 15px/1.4 var(--nv-sans); margin: 0; }
.nova-form textarea { min-height: 150px; resize: vertical; }
.nova-form input:focus, .nova-form select:focus, .nova-form textarea:focus { outline: 2px solid var(--nv-gold); outline-offset: 0; border-color: var(--nv-gold); }
.nova-form input:user-invalid, .nova-form select:user-invalid, .nova-form textarea:user-invalid { border-color: #9b2c2c; }
.nova-form .gfield_description { font-size: 13px; color: var(--nv-muted); margin-top: 6px; }
.nova-form .gfield_checkbox { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; }
.nova-form .gchoice { display: flex; align-items: center; gap: 10px; }
.nova-form .gchoice input { width: 20px; height: 20px; margin: 0; accent-color: var(--nv-gold); }
.nova-form .gchoice label { margin: 0; font-size: 15px; }
.nova-form .gform_footer { margin-top: 26px; }
.nova-form .gform_confirmation_message { background: var(--nv-cream); border-left: 3px solid var(--nv-gold); padding: 20px 24px; color: var(--nv-ink); font-weight: 600; }
.nova-form .gform_validation_errors { border: 1px solid #9b2c2c; padding: 14px 18px; margin-bottom: 20px; }
.nova-form .gform_validation_errors h2 { font: 600 15px/1.4 var(--nv-sans); color: #9b2c2c; margin: 0; }
.nova-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.twoThirds h4 { font-family: var(--nv-sans); font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.twoThirds h4.top { margin-top: 0; }

/* new pages (services, inspiration) */
.nv-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.nv-feature + .nv-feature { margin-top: clamp(48px, 6vw, 88px); }
.nv-feature--rev .nv-feature__media { order: 2; }
.nv-feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.nv-feature__body h2 { margin-top: 0; }
.nv-feature__body p { color: var(--nv-muted); }
.nv-chips { list-style: none; margin: 18px 0 24px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.nv-chips a { display: inline-block; padding: 7px 14px; border: 1px solid var(--nv-line); color: var(--nv-ink); font-size: 14px; text-decoration: none; }
.nv-chips a:hover { border-color: var(--nv-ink); }

/* ------------------------------------------------------------------ motion */
@media (prefers-reduced-motion: no-preference) {
  .js .nv-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--nv-ease), transform 0.7s var(--nv-ease); }
  .js .nv-reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* -------------------------------------------------------------- responsive */
@media (max-width: 1280px) {
  .nv-header__phone { display: none; }
  .nv-why { grid-template-columns: 1fr; }
  .nv-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .nv-footer__contact { grid-column: span 4; }
  .specialSlide > div { flex-basis: calc((100% - 32px) / 3); }
}
@media (max-width: 1100px) {
  :root { --nv-header-h: 68px; }
  .nv-nav, .nv-header__cta { display: none; }
  .nv-burger { display: inline-flex; }
  .nv-logo img { width: 140px; }
  .nv-split { grid-template-columns: 1fr; }
  .nv-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; }
  .nv-steps li:nth-child(4) { border-left: 0; padding-left: 0; }
  .nv-cta__inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nv-trust ul { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 12px; }
  .nv-trust li:nth-child(4) { border-left: 0; }
  .nv-why ul { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 24px; }
  .nv-why li:nth-child(4) { border-left: 0; }
  .nv-showroom__body { grid-template-columns: 1fr; }
  .nv-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .nv-footer__brand, .nv-footer__contact { grid-column: span 2; }
  .twoCol > section, .twoThirds > section, .twoThirds > section:last-child, .benefits .flexGrid > section, .benefits .flexGrid > div { flex-basis: 100%; }
  .fourCol > section { flex-basis: 48%; }
  .staggeredWide, .nv-feature { grid-template-columns: 1fr; }
  .nv-feature--rev .nv-feature__media { order: 0; }
  .highlightsInternal ul { grid-template-columns: 1fr; }
  .highlightsInternal li + li { border-left: 0; border-top: 1px solid var(--nv-line); }
  .specialSlide.specialList, ul.posts { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .specialSlide > div { flex-basis: calc((100% - 16px) / 2); }
  .nova-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  :root { --nv-gutter: 20px; }
  body { font-size: 15.5px; }
  .nv-hero { min-height: 520px; align-items: flex-end; }
  .nv-hero::before { background: linear-gradient(0deg, rgba(24, 22, 19, 0.9) 0%, rgba(24, 22, 19, 0.7) 55%, rgba(24, 22, 19, 0.25) 100%); }
  .nv-hero .nv-btns .nv-btn { flex: 1 1 100%; }
  .nv-trust { padding: 16px 0; }
  .nv-trust ul { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .nv-trust li { flex-direction: row; justify-content: flex-start; text-align: left; font-size: 14px; padding: 12px 8px; }
  .nv-trust li + li, .nv-trust li:nth-child(4) { border-left: 0; }
  .nv-trust li:nth-child(5) { grid-column: span 2; }
  .nv-trust .nv-icon { width: 28px; height: 28px; }
  .nv-trust br { display: none; }
  .nv-cats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
  .nv-card__label { padding: 12px; font-size: 14px; }
  .nv-cards3 { grid-template-columns: 1fr; }
  .nv-cards3 > li:last-child:nth-child(odd) { grid-column: auto; }
  .nv-rooms { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
  .nv-rooms > li:last-child { grid-column: span 2; }
  .nv-rooms > li:last-child .nv-room { aspect-ratio: 2.1; }
  .nv-why ul { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .nv-why li, .nv-why li + li { border-left: 0; flex-direction: row; text-align: left; justify-content: flex-start; }
  .nv-why li:nth-child(5) { grid-column: span 2; }
  .nv-why br, .nv-trust br { display: none; }
  .nv-steps { grid-template-columns: 1fr; row-gap: 0; }
  .nv-steps li, .nv-steps li + li, .nv-steps li:nth-child(4) { border-left: 0; padding: 18px 0; border-top: 1px solid var(--nv-line-dark); display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; }
  .nv-steps li:first-child { border-top: 0; }
  .nv-steps__num { grid-row: span 2; margin: 0; }
  .nv-showroom__actions { min-width: 0; }
  .nv-cta .nv-btns .nv-btn { flex: 1 1 100%; }
  .nv-footer__grid { grid-template-columns: 1fr; }
  .nv-footer__brand, .nv-footer__contact { grid-column: auto; }
  .nv-footer__bottom .nv-container { flex-direction: column; }
  .fourCol > section { flex-basis: 100%; }
  .specialSlide.specialList, ul.posts { grid-template-columns: 1fr; }
  .specialSlide > div { flex-basis: 84%; min-width: 0; }
  .nova-gallery { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .nova-form .gform_fields, .nova-form .ginput_complex, .nova-form .gfield_checkbox { grid-template-columns: 1fr; }
  .nova-form .gfield--width-half { grid-column: span 2; }
  .alignleft { float: none; margin: 0 auto 1.5em; }
  .nova-lightbox { padding: 60px 8px; }
}
@media (max-width: 360px) {
  .nv-cats { grid-template-columns: 1fr; }
  .nv-trust ul, .nv-why ul { grid-template-columns: 1fr; }
  .nv-trust li:nth-child(5), .nv-why li:nth-child(5) { grid-column: auto; }
}
@media (max-width: 400px) { .nv-card__label { font-size: 13px; padding: 12px 10px; } }
@media (max-width: 640px) {
  /* card sets become a swipeable row on phones instead of a long stack */
  .nv-cards3 { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-right: calc(var(--nv-gutter) * -1); padding-right: var(--nv-gutter); scrollbar-width: none; }
  .nv-cards3::-webkit-scrollbar { display: none; }
  .nv-cards3 > li { flex: 0 0 78%; scroll-snap-align: start; }
  .nv-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px 20px; }
  .nv-footer__brand, .nv-footer__contact { grid-column: span 2; }
}
/* restored markup places some components directly in the page body: give them the container width */
.wp-block-post-content > .accordion, .wp-block-post-content > .filter { width: min(848px, calc(100% - 2 * var(--nv-gutter))); margin-left: auto; margin-right: auto; }
.wp-block-post-content > .nova-gallery { width: min(var(--nv-container), 100%); margin: 0 auto; padding: 0 var(--nv-gutter); }
/* inner pages end with breathing room before the closing call to action */
body:not(.home) main#main { padding-bottom: var(--nv-section); }
.highlightsInternal img { filter: grayscale(1) brightness(0.35); }
.nv-small-h { font-family: var(--nv-sans); font-size: 15px; font-weight: 600; letter-spacing: 0; margin: 0 0 6px; } .nv-small-h.top { margin-top: 0; }
/* tablet proportions */
@media (max-width: 900px) {
  .nv-cats, .nv-rooms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nv-showroom { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
  .nv-showroom__body { padding: 36px 28px; }
}
@media (max-width: 767px) {
  .nv-showroom { grid-template-columns: 1fr; }
  .nv-showroom__media { min-height: 0; aspect-ratio: 3 / 2; }
}
@media (max-width: 640px) {
  .nv-cats, .nv-rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
