:root {
  --black: #020202;
  --ink: #151311;
  --muted: #6f6861;
  --gold: #a88756;
  --gold-dark: #8b6b3d;
  --gold-soft: #d6c4a3;
  --paper: #ffffff;
  --warm: #f5f3ee;
  --line: #d8d0c3;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.drawer-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.topbar {
  display: grid;
  grid-template-columns: auto 28px auto 1fr 42px 42px;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding: 0 22px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.topbar-separator {
  width: 1px;
  height: 16px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}

.topbar-search {
  display: flex;
  justify-self: end;
  align-items: center;
  width: min(360px, 100%);
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  overflow: hidden;
}

.topbar-search input {
  width: 100%;
  height: 100%;
  padding: 0 10px 0 18px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.topbar-search input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.icon-button,
.icon-link,
.float-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button svg,
.icon-link svg,
.float-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.main-nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 24px;
  background: var(--black);
  color: #fff;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-group a {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
}

.nav-group a:hover,
.underlined-link:hover,
.footer a:hover {
  color: var(--gold-soft);
}

.brand,
.footer-brand,
.appointment-brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  color: var(--gold-soft);
  text-align: center;
  letter-spacing: 0;
}

.brand span,
.footer-brand span,
.appointment-brand span {
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: 0.06em;
}

.brand small,
.footer-brand small,
.appointment-brand small {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 36px;
  min-width: 520px;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: 180ms ease;
  background: rgba(3, 3, 3, 0.96);
  border-top: 1px solid var(--gold);
  box-shadow: var(--shadow);
}

.has-mega:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  min-height: 0;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu-toggle,
.mobile-search,
.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(430px, 51vw, 560px);
  overflow: hidden;
  background: #111;
}

.hero img {
  width: 100%;
  height: clamp(430px, 51vw, 560px);
  object-fit: cover;
  object-position: 48% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.08) 54%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 46%);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 7vw, 96px);
  bottom: clamp(26px, 6vw, 78px);
  max-width: 520px;
  color: #fff;
}

.hero-panel p,
.section-heading p,
.service-copy p,
.appointment-card > p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h1,
.section-heading h2,
.intro h2,
.appointment-card h2,
.service-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-panel h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
}

.hero-panel span {
  display: block;
  max-width: 470px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: 180ms ease;
}

.button.primary,
.button:hover {
  background: var(--gold);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.button.ghost:hover {
  border-color: var(--gold);
}

.dark-section {
  background: var(--black);
  color: #fff;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  padding: clamp(56px, 8vw, 94px) clamp(22px, 7vw, 96px);
}

.intro-copy {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.quote-mark {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.25;
}

.intro h2 {
  color: var(--gold-soft);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.18;
}

.intro p:not(.quote-mark) {
  color: rgba(255, 255, 255, 0.72);
}

.underlined-link,
.feature-grid a {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card,
.showroom-media {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: #171717;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.video-card {
  padding: 0;
  cursor: pointer;
}

.video-card img,
.showroom-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 76px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: #e41f16;
  color: #fff;
  transform: translate(-50%, -50%);
}

.play-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.selected,
.products,
.why,
.categories,
.journal {
  padding: clamp(58px, 8vw, 92px) clamp(22px, 6vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.service-copy h2,
.appointment-card h2 {
  font-size: clamp(34px, 4.6vw, 49px);
  line-height: 1.15;
}

.section-heading span,
.service-copy span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-grid article,
.category-strip article,
.journal-grid article {
  text-align: center;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.feature-grid h3,
.category-strip h3,
.product-card h3,
.journal-grid h3,
.reason-grid h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.18;
}

.products,
.categories {
  position: relative;
  background: var(--warm);
  border-top: 4px solid var(--gold);
}

.ornament {
  width: 2px;
  height: 54px;
  margin: -94px auto 22px;
  background: var(--gold);
}

.ornament::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 48px 0 0 -7px;
  border-radius: 50%;
  background: var(--gold);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 0 44px;
}

.tab {
  min-width: 170px;
  min-height: 58px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

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

.product-card {
  display: grid;
  align-content: start;
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.product-card span {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 28px;
}

.product-card p {
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 800;
}

.load-more {
  margin: 48px auto 0;
}

.why {
  background: #fff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 48px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.reason-grid svg {
  width: 76px;
  height: 76px;
  color: var(--gold);
  stroke-width: 1.25;
}

.reason-grid h3 {
  font-size: 23px;
}

.reason-grid p {
  max-width: 300px;
  margin: 12px auto 0;
  color: var(--muted);
}

.showroom {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 24px;
  padding: 0 clamp(22px, 6vw, 72px) 72px;
  background: #fff;
}

.showroom-media {
  min-height: 410px;
  border-width: 0;
  border-radius: 0 0 28px 28px;
}

.appointment-card {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 28px;
  text-align: center;
}

.appointment-brand {
  margin: 26px 0;
  color: var(--gold);
}

.appointment-line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  width: 100%;
  margin: 10px 0;
  color: #312d29;
  text-align: left;
}

.appointment-line svg {
  color: var(--gold);
}

.brands {
  padding: clamp(58px, 8vw, 86px) clamp(22px, 7vw, 96px);
}

.brands .section-heading h2 {
  color: var(--gold-soft);
}

.brands .section-heading span {
  color: rgba(255, 255, 255, 0.74);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.brand-row span {
  padding: 12px 18px;
  border: 1px solid rgba(214, 196, 163, 0.45);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 22px;
}

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

.category-strip img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.category-strip h3 {
  font-family: var(--sans);
  font-size: 19px;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: clamp(58px, 8vw, 88px) clamp(22px, 7vw, 96px);
  background: var(--black);
  color: #fff;
}

.service-copy span {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid rgba(214, 196, 163, 0.42);
  color: var(--gold-soft);
  font-weight: 800;
}

.service-list svg {
  color: var(--gold);
}

.journal {
  background: #fff;
}

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

.journal-grid img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.journal-grid p {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-grid h3 {
  font-size: 26px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--black);
}

.page-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.56;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.page-hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 7vw, 96px);
  bottom: 44px;
  max-width: 760px;
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--gold-soft);
}

.page-hero-copy p,
.catalog-toolbar p,
.catalog-story p:first-child,
.article-main p:first-child,
.product-category {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-copy h1,
.catalog-toolbar h2,
.catalog-story h2,
.product-summary h1,
.product-panel h2,
.detail-article h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.page-hero-copy h1 {
  font-size: clamp(45px, 6.6vw, 76px);
  line-height: 1;
}

.page-hero-copy > span {
  display: block;
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 24px;
}

.hero-stats strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hero-stats small {
  align-self: end;
  margin-left: -22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.brand-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px clamp(18px, 6vw, 72px);
  background: var(--black);
  border-top: 1px solid rgba(214, 196, 163, 0.22);
}

.brand-rail span {
  min-width: 132px;
  padding: 11px 16px;
  border: 1px solid rgba(214, 196, 163, 0.38);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 72px);
  background: var(--warm);
}

.catalog-sidebar {
  align-self: start;
  position: sticky;
  top: 124px;
  min-width: 0;
}

.catalog-filter-form {
  display: grid;
  gap: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.sidebar-heading {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
}

.sidebar-heading svg {
  color: var(--gold);
}

.sidebar-heading h2 {
  margin: 0;
  font-size: 20px;
}

.filter-search {
  display: grid;
  gap: 8px;
}

.filter-search span,
.catalog-toolbar label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-search input,
.catalog-toolbar select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  outline: 0;
}

.catalog-filter-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-form legend {
  margin-bottom: 10px;
  font-weight: 800;
}

.catalog-filter-form label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #413b34;
}

.catalog-filter-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--gold);
}

.filter-actions {
  display: grid;
  gap: 10px;
}

.filter-actions .button {
  width: 100%;
}

.filter-reset {
  color: var(--gold);
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-toolbar h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.catalog-count {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
}

.catalog-toolbar label {
  display: grid;
  gap: 8px;
}

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

.product-image-link {
  display: block;
  overflow: hidden;
  background: #fff;
}

.product-image-link img,
.catalog-product img {
  transition: 260ms ease;
}

.catalog-product:hover img {
  transform: scale(1.035);
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 54px 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.empty-state svg {
  width: 54px;
  height: 54px;
  color: var(--gold);
}

.empty-state h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.empty-state p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.catalog-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 6vw, 72px);
  background: #fff;
  border-top: 4px solid var(--gold);
}

.catalog-story h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.catalog-story > p {
  margin: 0;
  color: var(--muted);
}

.product-page {
  background: var(--warm);
}

.product-breadcrumbs {
  margin: 0;
  padding: 24px clamp(18px, 6vw, 72px);
  color: var(--muted);
}

.product-breadcrumbs a:hover {
  color: var(--gold-dark);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  padding: 0 clamp(18px, 6vw, 72px) clamp(48px, 7vw, 72px);
}

.product-gallery,
.product-summary {
  min-width: 0;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
}

.product-summary {
  align-self: start;
  position: sticky;
  top: 124px;
  padding: clamp(26px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.product-summary h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin: 16px 0;
  color: var(--gold);
}

.rating-line svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-line span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
}

.product-price {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.product-lead {
  color: var(--muted);
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.quick-specs div {
  padding: 14px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.quick-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-specs dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.product-actions .button {
  width: 100%;
}

.product-actions svg {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}

.purchase-notes {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.purchase-notes article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: #413b34;
}

.purchase-notes svg {
  color: var(--gold);
}

.product-tabs-wrap,
.detail-article,
.faq-section,
.related-products {
  margin: 0 clamp(18px, 6vw, 72px) clamp(48px, 7vw, 72px);
  padding: clamp(34px, 5vw, 50px);
  background: #fff;
  border: 1px solid var(--line);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.product-tab {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.product-tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: block;
}

.product-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 42px);
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 14px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-table span {
  color: var(--muted);
  font-weight: 800;
}

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

.policy-grid article {
  padding: 22px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.policy-grid svg {
  color: var(--gold);
}

.policy-grid h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
}

.detail-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
}

.article-main h2 {
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.12;
}

.article-main p:not(:first-child) {
  color: var(--muted);
  font-size: 18px;
}

.article-index {
  align-self: start;
  position: sticky;
  top: 124px;
  padding: 20px;
  background: var(--black);
  color: #fff;
}

.article-index h3 {
  margin: 0 0 10px;
  color: var(--gold-soft);
}

.article-index a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 22px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-directory,
.news-section,
.team-section,
.about-services {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 6vw, 72px);
  background: #fff;
}

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

.service-card-grid article {
  display: grid;
  align-content: start;
  background: var(--warm);
  border: 1px solid var(--line);
}

.service-card-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.service-card-grid article > div {
  padding: 24px;
}

.service-card-grid svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  stroke-width: 1.5;
}

.service-card-grid h3,
.process-grid h3,
.news-card h3,
.team-grid h3,
.testimonial-grid h3 {
  margin: 12px 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.18;
}

.service-card-grid p,
.process-grid p,
.news-card span,
.about-prose p,
.about-signature span {
  color: var(--muted);
}

.service-card-grid button.underlined-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.service-process {
  padding: clamp(58px, 8vw, 90px) clamp(18px, 6vw, 72px);
}

.service-process .section-heading h2,
.testimonials .section-heading h2 {
  color: var(--gold-soft);
}

.service-process .section-heading span {
  color: rgba(255, 255, 255, 0.7);
}

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

.process-grid article {
  padding: 28px;
  border: 1px solid rgba(214, 196, 163, 0.38);
}

.process-grid span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.process-grid h3 {
  color: #fff;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 6vw, 72px);
  background: var(--warm);
  border-top: 4px solid var(--gold);
}

.service-cta p,
.featured-post p,
.news-section-head p,
.about-intro p:first-child,
.about-signature p,
.about-links p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-cta h2,
.featured-post h2,
.news-section-head h2,
.about-intro h2,
.about-signature h2,
.about-links h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500;
  line-height: 1.12;
}

.service-cta span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

.news-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 72px);
  background: var(--black);
}

.news-category-nav a {
  padding: 12px 20px;
  border: 1px solid rgba(214, 196, 163, 0.42);
  color: var(--gold-soft);
  font-weight: 800;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 6vw, 72px);
  background: var(--warm);
}

.featured-post img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.featured-post-media,
.news-card > a:first-child {
  display: block;
  overflow: hidden;
}

.featured-post span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.news-section {
  border-top: 1px solid var(--line);
}

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

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 24px;
}

.news-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-card {
  background: var(--warm);
  border: 1px solid var(--line);
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.news-card.large img {
  aspect-ratio: 1.68 / 1;
}

.news-card p,
.news-card h3,
.news-card span {
  margin-left: 20px;
  margin-right: 20px;
}

.news-card p {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 20px;
}

.news-card h3 a {
  transition: color 180ms ease;
}

.news-card h3 a:hover {
  color: var(--gold-dark);
}

.news-card span {
  display: block;
  margin-bottom: 22px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--black);
  color: #fff;
}

.article-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

.article-hero .breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.article-hero .breadcrumbs a {
  color: var(--gold-soft);
}

.article-kicker,
.article-toc p,
.article-side-card p,
.article-share p,
.related-articles .section-heading p,
.article-comparison span,
.related-article-grid p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 500;
  line-height: 1.04;
}

.article-lead {
  display: block;
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

.article-hero img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(34px, 5vw, 70px);
  padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 72px);
  background: #fff;
}

.article-content {
  min-width: 0;
  max-width: 880px;
}

.article-content h2 {
  margin: 46px 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.8vw, 50px);
  font-weight: 500;
  line-height: 1.12;
}

.article-content p,
.article-content li,
.article-image-wide figcaption,
.article-side-card span {
  color: var(--muted);
  font-size: 18px;
}

.article-drop {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: clamp(20px, 2.4vw, 24px) !important;
  line-height: 1.55;
}

.article-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin: 34px 0;
  padding: 24px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}

.article-note svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.article-note p {
  margin: 0;
}

.article-checklist,
.article-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.article-checklist {
  list-style: none;
}

.article-checklist li,
.article-steps li {
  padding: 16px 18px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.article-steps {
  padding-left: 22px;
}

.article-image-wide {
  margin: 36px 0 4px;
}

.article-image-wide img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.article-image-wide figcaption {
  margin-top: 10px;
  font-size: 14px;
}

.article-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 8px;
}

.article-comparison article {
  padding: 24px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.article-comparison h3,
.article-side-card h3,
.related-article-grid h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.18;
}

.article-comparison p {
  margin: 0;
  font-size: 16px;
}

.article-quote {
  margin: 42px 0;
  padding: 34px;
  background: var(--black);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 34px;
  background: var(--warm);
  border-top: 4px solid var(--gold);
}

.article-cta p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.12;
}

.article-cta span {
  display: block;
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

.article-sidebar {
  position: sticky;
  top: 124px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.article-toc,
.article-side-card,
.article-share {
  padding: 22px;
  border: 1px solid var(--line);
}

.article-toc {
  background: var(--black);
  border-color: rgba(214, 196, 163, 0.28);
}

.article-toc a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.article-side-card,
.article-share {
  background: var(--warm);
}

.article-side-card button.underlined-link {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-share-links a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold-dark);
}

.related-articles {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 6vw, 72px);
  background: var(--warm);
  border-top: 1px solid var(--line);
}

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

.related-article-grid article {
  background: #fff;
  border: 1px solid var(--line);
}

.related-article-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.related-article-grid p,
.related-article-grid h3 {
  margin-left: 20px;
  margin-right: 20px;
}

.related-article-grid p {
  margin-top: 20px;
}

.related-article-grid h3 {
  margin-bottom: 24px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  padding: clamp(54px, 8vw, 88px) clamp(18px, 6vw, 72px);
  background: #fff;
}

.about-prose p {
  margin-top: 0;
  font-size: 18px;
}

.about-signature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 38px;
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(18px, 6vw, 72px);
}

.about-signature img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.about-signature h2 {
  color: var(--gold-soft);
}

.about-signature span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.team-grid article {
  text-align: center;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.team-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.testimonials {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 6vw, 72px);
}

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

.testimonial-grid article {
  padding: 26px;
  border: 1px solid rgba(214, 196, 163, 0.36);
}

.testimonial-grid p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
}

.testimonial-grid span {
  color: var(--gold-soft);
  font-weight: 800;
}

.about-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--gold);
}

.about-links a {
  display: block;
  padding: clamp(38px, 6vw, 72px);
  background: var(--warm);
}

.about-links a:hover {
  background: #fff;
}

.about-links span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  padding: 52px clamp(22px, 7vw, 96px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(214, 196, 163, 0.32);
}

.footer-brand {
  justify-items: start;
  color: var(--gold-soft);
  text-align: left;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 7px 0;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  gap: 12px;
}

.float-button {
  width: 58px;
  height: 58px;
  border: 7px solid rgba(168, 135, 86, 0.2);
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

dialog {
  width: min(520px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-inner {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dialog-inner p {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
}

.dialog-inner input,
.dialog-inner select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  outline: 0;
}

.dialog-inner input:focus,
.dialog-inner select:focus {
  border-color: var(--gold);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .nav-group {
    gap: 26px;
    font-size: 16px;
  }

  .brand span {
    font-size: 30px;
  }

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

  .service-card-grid,
  .process-grid,
  .news-grid.four,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .catalog-shell,
  .product-detail,
  .detail-article,
  .featured-post,
  .article-hero,
  .article-shell,
  .about-intro,
  .about-signature {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .product-summary,
  .article-index,
  .article-sidebar {
    position: static;
  }

  .article-hero img {
    order: -1;
    min-height: 420px;
  }

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

  .catalog-story {
    grid-template-columns: 1fr;
  }

  .service-cta {
    grid-template-columns: 1fr;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    font-size: 11px;
  }

  .topbar-link {
    white-space: nowrap;
  }

  .topbar-separator,
  .topbar-search,
  .topbar .icon-link {
    display: none;
  }

  .main-nav {
    grid-template-columns: 44px 1fr 44px;
    min-height: 72px;
    padding: 0 14px;
  }

  .nav-group {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-search {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
  }

  .brand span {
    font-size: 25px;
  }

  .brand small {
    font-size: 9px;
  }

  .mobile-drawer {
    position: fixed;
    inset: 112px 0 auto;
    z-index: 19;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 112px);
    padding: 10px 22px 24px;
    visibility: hidden;
    overflow: auto;
    background: rgba(0, 0, 0, 0.97);
    color: #fff;
    opacity: 0;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  .drawer-open .mobile-drawer {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-drawer a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    font-weight: 800;
  }

  .hero,
  .hero img {
    min-height: 430px;
    height: 430px;
  }

  .hero-panel {
    right: 22px;
    bottom: 28px;
  }

  .hero-panel span {
    font-size: 16px;
  }

  .intro,
  .showroom,
  .services,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro {
    text-align: center;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

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

  .news-grid,
  .article-cta,
  .article-comparison,
  .related-article-grid,
  .about-links {
    grid-template-columns: 1fr;
  }

  .showroom {
    padding-bottom: 54px;
  }

  .appointment-card,
  .showroom-media {
    border-radius: 0;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .topbar {
    min-height: 34px;
  }

  .main-nav {
    min-height: 64px;
  }

  .mobile-drawer {
    top: 98px;
    max-height: calc(100vh - 98px);
  }

  .hero,
  .hero img {
    min-height: 390px;
    height: 390px;
  }

  .hero-panel h1 {
    font-size: 44px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .selected,
  .products,
  .why,
  .categories,
  .journal,
  .intro,
  .brands,
  .services,
  .catalog-shell,
  .catalog-story,
  .service-directory,
  .service-process,
  .service-cta,
  .news-section,
  .featured-post,
  .article-shell,
  .related-articles,
  .team-section,
  .about-services,
  .about-intro,
  .about-signature,
  .testimonials {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .page-hero img {
    min-height: 390px;
    height: 390px;
  }

  .page-hero-copy {
    left: 18px;
    right: 18px;
    bottom: 28px;
  }

  .page-hero-copy h1 {
    font-size: 44px;
  }

  .article-hero {
    min-height: auto;
  }

  .article-hero img {
    min-height: 320px;
  }

  .article-hero-copy {
    padding: 36px 18px 42px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-meta {
    display: grid;
    gap: 10px;
  }

  .article-note,
  .article-cta,
  .article-quote,
  .article-toc,
  .article-side-card,
  .article-share {
    padding: 22px;
  }

  .article-note {
    grid-template-columns: 1fr;
  }

  .brand-rail {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .brand-rail span {
    flex: 0 0 auto;
  }

  .catalog-filter-form {
    padding: 18px;
  }

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

  .product-detail {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-specs,
  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tabs-wrap,
  .detail-article,
  .faq-section,
  .related-products {
    margin-left: 18px;
    margin-right: 18px;
    padding: 22px;
  }

  .product-tabs {
    display: grid;
  }

  .product-tab {
    width: 100%;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading span,
  .service-copy span {
    font-size: 16px;
  }

  .feature-grid,
  .product-grid,
  .reason-grid,
  .category-strip,
  .journal-grid,
  .service-card-grid,
  .process-grid,
  .news-grid.four,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid h3,
  .product-card h3 {
    font-size: 25px;
  }

  .tabs {
    gap: 10px;
  }

  .tab {
    flex: 1 1 100%;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-button {
    width: 52px;
    height: 52px;
  }
}
