:root {
  --ink: #172334;
  --muted: #66727f;
  --line: #d9e0e7;
  --soft: #f5f7f9;
  --paper: #ffffff;
  --brand: #cf1d26;
  --brand-dark: #a8141c;
  --teal: #0d7377;
  --gold: #d6a33d;
  --green: #385f46;
  --shadow: 0 18px 48px rgba(23, 35, 52, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  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;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 0 clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 126px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: #273445;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 30px 0;
}

.primary-nav a:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.tool-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.icon,
.icon-button svg,
.tool-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.quote-link,
.button,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  font-weight: 760;
  white-space: nowrap;
}

.quote-link,
.button {
  color: var(--paper);
  background: var(--brand);
}

.quote-link:hover,
.button:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.page {
  overflow: visible;
}

.section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 48px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  min-height: min(740px, calc(100vh - 80px));
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(13, 24, 38, 0.78), rgba(13, 24, 38, 0.48) 46%, rgba(13, 24, 38, 0.18)),
    url("https://logobrella.com/images/hero-01.jpg") center / cover;
  color: var(--paper);
}

.hero-inner {
  display: grid;
  min-height: min(650px, calc(100vh - 164px));
  grid-template-columns: minmax(0, 600px) minmax(300px, 380px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 84px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  padding: 4vh 0 8vh;
}

.hero h1 {
  max-width: 10.8ch;
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 5.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 580px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
}

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

.hero .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.quote-panel {
  align-self: center;
  margin-top: 120px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quote-panel h2 {
  margin: 0 0 18px;
  font-size: 1.12rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quote-stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.quote-stat strong {
  display: block;
  font-size: 1.25rem;
}

.quote-stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--line);
}

.trust-item {
  min-height: 112px;
  padding: 24px;
  background: var(--soft);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--teal);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lede {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.category-card,
.product-card,
.info-card,
.base-card,
.feature-card,
.resource-card,
.contact-card,
.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.category-card {
  display: grid;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--soft);
}

.category-card div {
  padding: 20px;
}

.category-card h3,
.product-card h3,
.info-card h3,
.base-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.category-card p,
.product-card p,
.info-card p,
.base-card p,
.feature-card p,
.resource-card p,
.contact-card p,
.result-card p {
  margin: 0;
  color: var(--muted);
}

.subhero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(15, 27, 42, 0.82), rgba(15, 27, 42, 0.46)),
    var(--hero-image, url("https://logobrella.com/images/hero-01.jpg")) center / cover;
}

.subhero .section-inner {
  min-height: 340px;
  display: grid;
  align-content: center;
}

.subhero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.45rem);
  line-height: 1.02;
}

.subhero .section-lede {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.feature-grid,
.resource-grid,
.contact-grid,
.search-results,
.fabric-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-fabric-grid {
  margin-bottom: 22px;
}

.feature-card,
.resource-card,
.contact-card,
.result-card,
.fabric-brand-card {
  padding: 22px;
}

.feature-card .icon,
.resource-card .icon,
.contact-card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--brand);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th {
  background: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.form-panel,
.quote-summary-panel,
.search-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: #2d3a48;
  font-size: 0.86rem;
  font-weight: 780;
}

.form-field input,
.form-field select,
.form-field textarea,
.search-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.file-drop {
  display: grid;
  min-height: 128px;
  place-items: center;
  padding: 20px;
  border: 1px dashed #aeb8c3;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: var(--soft);
}

.quote-summary-panel {
  position: sticky;
  top: 104px;
}

.summary-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.search-panel {
  display: grid;
  gap: 16px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.resource-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 18px;
  margin: -22px -22px 18px;
  max-width: calc(100% + 44px);
  background: var(--soft);
}

.fabric-brand-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.fabric-logo-box {
  display: grid;
  place-items: center;
  min-height: 126px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.fabric-logo-box img {
  width: min(100%, 190px);
  max-height: 70px;
  object-fit: contain;
}

.fabric-brand-card h3 {
  margin: 0 0 8px;
}

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

.fabric-facts {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.fabric-facts li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.fabric-facts span {
  color: var(--muted);
}

.fabric-facts strong {
  text-align: right;
}

.process-band {
  color: var(--paper);
  background: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-step {
  min-height: 220px;
  padding: 26px;
  background: var(--ink);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.discover-image {
  min-height: 520px;
  border-radius: var(--radius);
  background: url("https://logobrella.com/images/hero-02.jpg") center / cover;
}

.text-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.text-list li {
  padding-left: 18px;
  border-left: 3px solid var(--brand);
}

.collection-hero {
  padding-top: 44px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.collection-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: end;
}

.collection-top h1,
.product-title h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.collection-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.summary-pill {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.summary-pill strong {
  display: block;
}

.summary-pill span {
  color: var(--muted);
  font-size: 0.86rem;
}

.collection-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.filter-header,
.filter-group {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-header strong,
.product-toolbar strong {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-group h2 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-row,
.radio-row {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  color: #2f3c49;
}

.check-row input,
.radio-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.product-toolbar select {
  min-width: 180px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(23, 35, 52, 0.12);
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 255px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f3f6f8);
}

.product-image img {
  width: min(88%, 240px);
  max-height: 230px;
  object-fit: contain;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  color: var(--brand);
  font-size: 1.12rem;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

.inline-link {
  color: var(--brand);
  font-weight: 760;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--ink);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.main-photo {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.main-photo img {
  max-height: 465px;
  object-fit: contain;
}

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

.thumb-row button {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.thumb-row img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.product-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-title h1 {
  font-size: clamp(1.95rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.sku {
  margin: 16px 0 22px;
  color: var(--muted);
  font-weight: 760;
  letter-spacing: 0.08em;
}

.pdp-copy {
  margin: 0 0 24px;
  color: #445260;
}

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

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

.quick-specs strong {
  display: block;
}

.quick-specs span {
  color: var(--muted);
  font-size: 0.84rem;
}

.swatch-block {
  margin: 24px 0;
}

.swatch-block .fabric-logo-box {
  min-height: 74px;
  margin-bottom: 14px;
}

.swatch-block .fabric-logo-box img {
  max-height: 42px;
}

.swatch-block h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 34px;
  height: 34px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.is-selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.pdp-section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pdp-section h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.pdp-section h2 span {
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
}

.detail-row dt {
  color: #2f3c49;
}

.detail-row dd {
  margin: 0;
  color: var(--brand);
  font-weight: 760;
  text-align: right;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.price-strip div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.price-strip span {
  display: block;
  color: #31404f;
}

.price-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
}

.note-copy {
  color: var(--muted);
}

.price-table th,
.price-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.info-card {
  padding: 22px;
}

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

.base-card {
  overflow: hidden;
}

.base-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 24px;
  background: var(--soft);
}

.base-card div {
  padding: 18px;
}

.placeholder-page {
  min-height: 54vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.placeholder-page p {
  max-width: 560px;
  margin: 12px auto 24px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 44px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.76);
  background: #111b28;
}

.footer > div {
  width: min(100%, var(--max));
}

.footer img {
  max-width: 150px;
}

.footer > div:first-child img {
  width: 150px;
  margin-bottom: 12px;
}

.footer p {
  max-width: 470px;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--paper);
  font-weight: 760;
}

.association-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.association-row figure {
  display: grid;
  gap: 8px;
  place-items: center;
  min-width: 96px;
  margin: 0;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: #0b1420;
}

.association-row img {
  width: 76px;
  height: 36px;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.association-row figcaption {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .primary-nav a {
    padding: 0;
  }

  .hero-inner,
  .collection-top,
  .split-band,
  .product-hero,
  .footer {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    margin-top: 0;
    margin-bottom: 0;
  }

  .trust-grid,
  .process-grid,
  .base-grid,
  .feature-grid,
  .resource-grid,
  .contact-grid,
  .search-results,
  .fabric-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .product-grid,
  .details-grid,
  .quote-builder {
    grid-template-columns: repeat(2, 1fr);
  }

  .association-row {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 112px;
  }

  .quote-link {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .quote-grid,
  .category-grid,
  .trust-grid,
  .process-grid,
  .collection-summary,
  .product-grid,
  .quick-specs,
  .details-grid,
  .base-grid,
  .quote-actions,
  .feature-grid,
  .resource-grid,
  .contact-grid,
  .search-results,
  .fabric-brand-grid,
  .quote-builder,
  .form-grid,
  .search-row {
    grid-template-columns: 1fr;
  }

  .quote-fabric-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .quote-summary-panel {
    position: static;
  }

  .price-strip,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-row dd {
    text-align: left;
  }

  .collection-top h1,
  .product-title h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .main-photo {
    min-height: 390px;
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}
