:root {
  --ink: #1f2a37;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #f6f8fb;
  --white: #ffffff;
  --navy: #102a43;
  --teal: #008c95;
  --teal-dark: #006a73;
  --red: #b42334;
  --gold: #c9912f;
  --ivory: #fbf7ef;
  --burgundy: #772436;
  --shadow: 0 18px 46px rgba(16, 42, 67, 0.12);
  --shadow-deep: 0 30px 80px rgba(16, 42, 67, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.topbar {
  color: #dce9ee;
  background: var(--navy);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 24px;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--teal);
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: #344054;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 0;
}

.main-nav a:hover {
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
  padding: 12px 0;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 260px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-panel a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.dropdown-panel a:hover {
  color: var(--teal);
  background: #eef7f8;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #cbd5e1;
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-site {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: 680px;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92) 0%, rgba(16, 42, 67, 0.86) 48%, rgba(246, 248, 251, 1) 48%, rgba(246, 248, 251, 1) 100%);
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.factory-copy .eyebrow {
  color: #69d6dc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d6e2ea;
  font-size: 18px;
}

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

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: stretch;
}

.showcase-large,
.showcase-column img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.showcase-large {
  height: 560px;
}

.showcase-column {
  display: grid;
  gap: 16px;
}

.showcase-column img {
  height: 272px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1320px;
  margin: -36px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.quick-links a {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
  font-weight: 800;
  text-align: center;
}

.quick-links a:first-child {
  border-radius: 6px 0 0 6px;
}

.quick-links a:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 6px 6px 0;
}

.quick-links a:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.section,
.factory-band,
.quote-layout,
.product-catalog,
.page-hero {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 145, 47, 0.28), transparent 34%),
    linear-gradient(135deg, #071827 0%, var(--navy) 58%, var(--burgundy) 100%);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #d8e4ea;
  font-size: 18px;
}

.catalog-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: var(--shadow-deep);
}

.product-suite {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.suite-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 42, 67, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.suite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.suite-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.suite-card div {
  padding: 22px;
}

.featured-suite {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.featured-suite img {
  height: 100%;
  min-height: 360px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  color: var(--gold);
}

.premium-cta {
  margin: 0 clamp(20px, 5vw, 72px) clamp(58px, 8vw, 108px);
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(119, 36, 54, 0.94), rgba(16, 42, 67, 0.96)),
    url("woven-jacquard-ties.jpg") center/cover;
  border-radius: 10px;
}

.premium-cta h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: 620px;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(105, 214, 220, 0.24), transparent 30%),
    linear-gradient(135deg, #071827, var(--navy) 66%, #0d3f46);
}

.detail-hero.printed-theme {
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 145, 47, 0.26), transparent 30%),
    linear-gradient(135deg, #071827, var(--burgundy) 62%, #102a43);
}

.detail-hero.corporate-theme {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 140, 149, 0.28), transparent 34%),
    linear-gradient(135deg, #071827, #263b52 62%, #101828);
}

.detail-hero.packing-theme {
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 145, 47, 0.24), transparent 34%),
    linear-gradient(135deg, #1d2b1f, var(--navy) 62%, #071827);
}

.detail-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #d8e4ea;
  font-size: 18px;
}

.detail-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-deep);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.detail-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.detail-gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
}

.spec-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.spec-panel dl {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.spec-panel div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

.spec-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-panel dt {
  color: var(--navy);
  font-weight: 900;
}

.spec-panel dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.detail-process {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.process-line.compact article {
  min-height: 190px;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(58px, 8vw, 108px);
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 10px;
}

.standard-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(105, 214, 220, 0.23), transparent 34%),
    linear-gradient(135deg, #071827, var(--navy) 64%, #0d3f46);
}

.standard-hero.factory-hero-page {
  background:
    radial-gradient(circle at 84% 16%, rgba(201, 145, 47, 0.23), transparent 34%),
    linear-gradient(135deg, #071827, #1f3d36 62%, var(--navy));
}

.standard-hero.knowledge-hero-page {
  background:
    radial-gradient(circle at 84% 16%, rgba(201, 145, 47, 0.2), transparent 34%),
    linear-gradient(135deg, #071827, var(--burgundy) 62%, var(--navy));
}

.standard-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #d8e4ea;
  font-size: 18px;
}

.standard-hero img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-deep);
}

.solution-page-grid,
.factory-showcase,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.solution-page-grid article,
.factory-showcase article,
.article-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 42, 67, 0.08);
}

.solution-page-grid span {
  color: var(--teal);
  font-weight: 900;
}

.solution-page-grid p,
.factory-showcase p,
.article-grid p {
  color: var(--muted);
}

.factory-showcase article {
  padding: 0;
  overflow: hidden;
}

.factory-showcase img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.factory-showcase h2,
.factory-showcase p {
  padding-left: 24px;
  padding-right: 24px;
}

.factory-showcase p {
  padding-bottom: 24px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-deep);
}

.contact-card a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-weight: 900;
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-form-layout {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.compact-heading {
  display: grid;
  gap: 10px;
}

.section-heading p:not(.eyebrow),
.quote-intro p,
.factory-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.products-overview {
  background: var(--white);
}

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

.category-item {
  display: grid;
  grid-template-rows: 260px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item span {
  min-height: 62px;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
}

.category-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.solution-section {
  background: var(--paper);
}

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

.solution-list article,
.knowledge-grid article,
.process-line article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.solution-list p,
.knowledge-grid p,
.process-line p,
.product-row p,
.product-row li {
  margin: 0;
  color: var(--muted);
}

.factory-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.factory-copy p {
  color: #d3e0e8;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.factory-stats div {
  min-height: 100px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.factory-stats dt {
  font-weight: 900;
}

.factory-stats dd {
  margin: 6px 0 0;
  color: #d3e0e8;
  font-size: 14px;
}

.factory-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.factory-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

.process-section {
  background: var(--white);
}

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

.process-line span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.knowledge-section {
  background: var(--paper);
}

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

.quote-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(440px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  background: var(--white);
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-stack a {
  color: var(--navy);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 140, 149, 0.18);
  border-color: var(--teal);
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-button {
  width: 100%;
  border: 0;
  font-size: 16px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.page-hero p:not(.eyebrow) {
  color: #d3e0e8;
}

.page-hero img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
}

.product-catalog {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.product-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.product-row.reverse img {
  order: 2;
}

.product-row img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

.product-row h2 {
  margin-bottom: 14px;
}

.product-row ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #071827;
}

.site-footer p {
  margin: 4px 0 0;
  color: #cbd5e1;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.site-footer a:hover {
  color: #69d6dc;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 8px;
}

.floating-contact a {
  display: grid;
  place-items: center;
  min-width: 108px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.18);
  font-weight: 900;
}

.floating-contact a:last-child {
  background: var(--red);
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px);
  background: var(--paper);
}

.thank-you-panel {
  width: min(820px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.thank-you-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1120px) {
  .hero-site,
  .factory-band,
  .quote-layout,
  .page-hero,
  .catalog-hero,
  .detail-hero,
  .detail-layout,
  .standard-hero,
  .contact-hero,
  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero-site {
    background: var(--navy);
  }

  .product-row.reverse img {
    order: 0;
  }

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

  .quick-links a,
  .quick-links a:first-child,
  .quick-links a:last-child {
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .category-grid,
  .solution-list,
  .process-line,
  .product-suite,
  .solution-page-grid,
  .factory-showcase,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-suite {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .spec-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .main-nav,
  .topbar nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-dropdown {
    padding: 0;
  }

  .dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-cta {
    width: 100%;
  }

  .hero-site,
  .section,
  .factory-band,
  .quote-layout,
  .product-catalog,
  .page-hero,
  .catalog-hero,
  .detail-hero,
  .detail-layout,
  .detail-process,
  .standard-hero,
  .contact-hero,
  .solution-page-grid,
  .factory-showcase,
  .article-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-showcase,
  .quick-links,
  .category-grid,
  .solution-list,
  .factory-stats,
  .factory-media,
  .process-line,
  .knowledge-grid,
  .form-row,
  .product-suite,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .featured-suite {
    grid-column: auto;
  }

  .hero-showcase {
    display: block;
  }

  .showcase-large,
  .showcase-column img,
  .page-hero img,
  .catalog-hero img,
  .detail-hero img,
  .standard-hero img,
  .product-row img,
  .suite-card img,
  .featured-suite img,
  .detail-gallery img,
  .factory-media img {
    height: 320px;
  }

  .detail-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 18px;
    margin-right: 18px;
  }

  .showcase-column {
    display: none;
  }

  .quick-links {
    margin-top: 0;
    padding: 0;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-contact a {
    min-width: 92px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
