:root {
  --navy: #17213d;
  --navy-deep: #0e162c;
  --blue: #365f87;
  --blue-soft: #6e89a4;
  --ivory: #e5e2d2;
  --ivory-light: #f6f4ed;
  --paper: #fbfaf6;
  --charcoal: #302f2c;
  --muted: #73746f;
  --line: rgba(48, 47, 44, 0.14);
  --white: #fff;
  --heading: "Oswald", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 20px 50px rgba(23, 33, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

.container {
  width: min(100% - 2rem, 1140px);
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.g-0 {
  gap: 0;
}

.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

.col-6 {
  flex: 0 0 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.mx-auto {
  margin-inline: auto;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.w-100 {
  width: 100%;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.sticky-top {
  position: sticky;
  top: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.input-group {
  display: flex;
  width: 100%;
}

.input-group-text {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--muted);
  background: var(--paper);
}

.form-control {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: var(--white);
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
}

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.35rem;
}

.btn-light {
  border-color: var(--ivory-light);
  color: var(--navy);
  background: var(--ivory-light);
}

.btn-outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.bi {
  display: inline-block;
  min-width: 1em;
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.bi-list::before { content: "☰"; }
.bi-search::before { content: "⌕"; }
.bi-grid-3x3-gap::before { content: "▦"; }
.bi-layers::before { content: "▣"; }
.bi-envelope-paper::before { content: "✉"; }
.bi-box-seam::before { content: "□"; }
.bi-arrow-right::before { content: "→"; }
.bi-box-arrow-up-right::before { content: "↗"; }
.bi-facebook::before { content: "f"; font-weight: 800; }
.bi-check2::before { content: "✓"; }
.bi-info-circle::before { content: "i"; font-weight: 800; }
.bi-lock::before { content: "•"; }
.bi-chevron-right::before { content: "›"; }
.bi-stars::before { content: "*"; }

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }

  .col-md-6 {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }

  .text-lg-end {
    text-align: right;
  }

  .col-lg-2 {
    flex: 0 0 calc(16.666% - 1.25rem);
    max-width: calc(16.666% - 1.25rem);
  }

  .col-lg-3 {
    flex: 0 0 calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
  }

  .col-lg-4 {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }

  .col-lg-5 {
    flex: 0 0 calc(41.666% - 1.5rem);
    max-width: calc(41.666% - 1.5rem);
  }

  .col-lg-6 {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }

  .col-lg-7 {
    flex: 0 0 calc(58.333% - 1.5rem);
    max-width: calc(58.333% - 1.5rem);
  }

  .col-lg-8 {
    flex: 0 0 calc(66.666% - 1rem);
    max-width: calc(66.666% - 1rem);
  }
}

@media (min-width: 1200px) {
  .col-xl-5 {
    flex: 0 0 calc(41.666% - 1rem);
    max-width: calc(41.666% - 1rem);
  }

  .offset-xl-1 {
    margin-left: calc(8.333% + 1rem);
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
}

@media (max-width: 767.98px) {
  .row {
    gap: 1.25rem;
  }

  .col-6,
  .col-sm-6,
  .col-md-4,
  .col-md-6,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-xl-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container {
    padding-inline: 1rem;
  }
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  min-height: 34px;
  padding: 0.48rem 1rem;
  color: var(--ivory-light);
  background: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  z-index: 1020;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 78px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.5rem;
}

.navbar-collapse {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.navbar-toggler {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(54, 95, 135, 0.22);
}

.nav-toggle:focus-visible + .navbar-toggler {
  box-shadow: 0 0 0 3px rgba(54, 95, 135, 0.22);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-lockup .brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory-light);
  background: var(--navy);
  font-family: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand-lockup .brand-logo-mark {
  width: 48px;
  height: 48px;
  padding: 0.38rem;
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup strong {
  font-family: var(--heading);
  font-size: 1.34rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  margin-top: 0.26rem;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar .nav-link {
  padding: 0.6rem 0.8rem !important;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
}

.icon-button:hover,
.icon-button:focus {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.search-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--ivory-light);
}

.search-panel:target {
  display: block;
}

.search-panel .form-control,
.search-panel .input-group-text,
.search-panel .btn {
  min-height: 48px;
  border-radius: 0;
}

.btn {
  border-radius: 0;
  font-weight: 700;
}

.btn-brand {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.btn-ghost {
  border-color: rgba(23, 33, 61, 0.45);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.36);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ivory);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(246, 244, 237, 0.96) 0%, rgba(246, 244, 237, 0.76) 38%, rgba(246, 244, 237, 0) 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 680px;
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #b9c9da;
}

.hero h1,
.section-heading h2,
.editorial-strip h2,
.story-section h2,
.contact-cta h2,
.product-summary h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 560px;
  margin: 1.8rem 0 0;
  color: #464a4b;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions .btn {
  min-width: 170px;
}

.hero-note {
  display: flex;
  max-width: 510px;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  color: #5e615f;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.hero-note .line {
  width: 44px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--blue);
}

.benefits-section {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.benefits-section .container {
  box-shadow: var(--shadow);
}

.benefit {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ivory-light);
  background: var(--navy);
}

.benefit:nth-child(even) {
  background: var(--blue);
}

.benefit i {
  flex: 0 0 auto;
  font-size: 1.5rem;
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

.benefit span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.45;
}

.section-space {
  padding: 7rem 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-heading h2,
.story-section h2,
.contact-cta h2,
.editorial-strip h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
}

.category-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  margin-top: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.category-filter::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
}

.filter-button:hover,
.filter-button:focus,
.filter-button.active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}


.product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: var(--ivory);
}

.product-media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-media img,
.product-card:hover .fabric-pattern {
  transform: scale(1.025);
}

.fabric-pattern {
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 400ms ease;
}

.pattern-navy {
  background-color: #17213d;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(92, 128, 169, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(229, 226, 210, 0.15) 0 1px, transparent 2px),
    repeating-linear-gradient(42deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(-42deg, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px 8px);
  background-size: 14px 14px, 18px 18px, auto, auto;
}

.pattern-blue {
  background-color: #365f87;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(0deg, rgba(14, 22, 44, 0.13) 0 1px, transparent 1px 6px);
}

.pattern-ivory {
  background-color: #e5e2d2;
  background-image:
    repeating-linear-gradient(28deg, rgba(48, 47, 44, 0.07) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-28deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 6px);
}

.pattern-charcoal {
  background-color: #302f2c;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 1px, transparent 1px 4px);
}

.pattern-buttons,
.pattern-buttons-horn,
.pattern-buttons-pearl,
.pattern-buttons-metal {
  background-color: var(--ivory);
  background-position: 10px 10px, 92px 78px, 156px 22px, 212px 118px;
  background-repeat: repeat;
  background-size: 220px 220px;
}

.pattern-buttons {
  background-image:
    radial-gradient(circle, #17213d 0 4px, #365f87 5px 8px, #17213d 9px 34px, transparent 35px),
    radial-gradient(circle, #e5e2d2 0 4px, #fff 5px 8px, #365f87 9px 31px, transparent 32px),
    radial-gradient(circle, #302f2c 0 4px, #807e74 5px 8px, #302f2c 9px 28px, transparent 29px),
    radial-gradient(circle, #365f87 0 4px, #17213d 5px 8px, #365f87 9px 26px, transparent 27px);
}

.pattern-buttons-horn {
  background-color: #d8d0bb;
  background-image:
    radial-gradient(circle, #2f2a23 0 4px, #8d765a 5px 8px, #392e23 9px 35px, transparent 36px),
    radial-gradient(circle, #7a6145 0 4px, #2f2a23 5px 8px, #aa8e6c 9px 31px, transparent 32px),
    radial-gradient(circle, #251f1a 0 4px, #b4936c 5px 8px, #503d2b 9px 28px, transparent 29px),
    radial-gradient(circle, #6e5136 0 4px, #2f2a23 5px 8px, #96734f 9px 26px, transparent 27px);
}

.pattern-buttons-pearl {
  background-color: #e7e4da;
  background-image:
    radial-gradient(circle, #cad9df 0 4px, #fff 5px 8px, #e9f0f1 9px 35px, transparent 36px),
    radial-gradient(circle, #f4e4e4 0 4px, #fff 5px 8px, #ead7d7 9px 31px, transparent 32px),
    radial-gradient(circle, #d7dfeb 0 4px, #fff 5px 8px, #e8edf3 9px 28px, transparent 29px),
    radial-gradient(circle, #e5dcbf 0 4px, #fff 5px 8px, #eee7cf 9px 26px, transparent 27px);
}

.pattern-buttons-metal {
  background-color: #252727;
  background-image:
    radial-gradient(circle, #171717 0 4px, #c2aa70 5px 8px, #6f5729 9px 35px, transparent 36px),
    radial-gradient(circle, #1a1a1a 0 4px, #d8d8d2 5px 8px, #777a78 9px 31px, transparent 32px),
    radial-gradient(circle, #151515 0 4px, #b37a55 5px 8px, #69422e 9px 28px, transparent 29px),
    radial-gradient(circle, #111 0 4px, #9ca5aa 5px 8px, #4b5154 9px 26px, transparent 27px);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.65rem;
  color: var(--navy);
  background: rgba(246, 244, 237, 0.92);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-body {
  padding: 1.35rem;
}

.product-category {
  margin: 0 0 0.5rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.65rem;
  font-weight: 500;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-link:hover {
  color: var(--blue);
}

.empty-state {
  padding: 4rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.editorial-strip {
  padding: 6rem 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
}

.editorial-strip h2,
.contact-cta h2 {
  color: var(--white);
}

.editorial-strip p:not(.eyebrow) {
  margin: 1.5rem 0;
  line-height: 1.75;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.text-link i {
  margin-left: 0.4rem;
}

.concept-comparison {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.concept-swatch,
.concept-image {
  position: relative;
  overflow: hidden;
}

.concept-swatch {
  z-index: 2;
  min-height: 390px;
  margin-right: 0;
  border: 12px solid var(--ivory-light);
  box-shadow: var(--shadow);
}

.concept-image {
  justify-self: end;
}

.concept-swatch img {
  width: 100%;
  height: 100%;
  min-height: 366px;
  object-fit: cover;
}

.concept-image {
  height: 520px;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .editorial-strip .row {
    flex-wrap: nowrap;
  }

  .editorial-strip .col-lg-5 {
    flex: 0 0 calc(39% - 1.5rem);
    max-width: calc(39% - 1.5rem);
  }

  .editorial-strip .col-lg-7 {
    flex: 0 0 calc(61% - 1.5rem);
    max-width: calc(61% - 1.5rem);
  }
}

.image-label {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 3;
  padding: 0.42rem 0.62rem;
  color: var(--navy);
  background: rgba(246, 244, 237, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.image-label.light {
  color: var(--ivory-light);
  background: rgba(14, 22, 44, 0.78);
}

.partner-strip {
  overflow: hidden;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.partner-heading {
  width: min(100% - 2rem, 1140px);
  margin: 0 auto 2rem;
  padding-inline: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.partner-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--body);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0;
}

.partner-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  animation: partner-scroll 28s linear infinite;
}

.partner-logo {
  display: inline-flex;
  width: clamp(150px, 14vw, 230px);
  height: clamp(58px, 6vw, 82px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(23, 33, 61, 0.34);
  color: rgba(23, 33, 61, 0.62);
  background: rgba(246, 244, 237, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(0.75rem, 2vw, 2rem)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }
}

.category-card {
  position: relative;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  align-items: flex-end;
  padding: 1.5rem;
  color: var(--white);
  text-decoration: none;
  background: var(--navy);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(14, 22, 44, 0.8) 100%);
}

.category-card .fabric-pattern,
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1), transform 500ms ease;
}

.category-card .category-image-next {
  opacity: 0;
}

.category-card .category-image-next.is-visible {
  opacity: 1;
}

.category-card .category-image.is-fading,
.category-card .fabric-pattern.is-fading {
  opacity: 0;
}

.category-card:hover .fabric-pattern,
.category-card:hover img {
  transform: scale(1.05);
}

.category-content {
  position: relative;
  z-index: 2;
}

.category-content span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-content h3 {
  margin: 0.45rem 0 0;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.category-content p {
  max-width: 250px;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  line-height: 1.5;
}

.category-content strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-section {
  padding: 7rem 0;
  background: var(--ivory-light);
}

.story-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 3vw, 3rem);
}

.story-art {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 440px;
}

.story-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.story-actions .btn {
  font-size: 0.85rem;
  min-height: 44px;
  padding: 0.8rem 1.4rem;
}

.story-summary {
  width: 100%;
  max-width: 560px;
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.story-summary-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(23, 33, 61, 0.08);
}

.story-summary-item:first-child {
  border-top: none;
}

.story-summary-label {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-summary-value {
  color: var(--charcoal);
  line-height: 1.7;
}

.story-block {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--navy);
}

.story-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.12), rgba(7, 18, 38, 0.3));
  opacity: 0;
  transition: opacity 200ms ease;
}

.story-block:hover::before {
  opacity: 1;
}

.block-navy {
  background: var(--navy);
}

.block-blue {
  background: var(--blue);
}

.block-ivory {
  background:
    repeating-linear-gradient(45deg, rgba(48, 47, 44, 0.05) 0 1px, transparent 1px 5px),
    var(--ivory);
}

.block-charcoal {
  background: var(--charcoal);
}

.story-thread {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(16deg);
}

.story-monogram {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 14px solid var(--paper);
  color: var(--ivory-light);
  background: var(--navy-deep);
  font-family: var(--heading);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.lead-copy {
  margin-top: 1.6rem;
  color: #555953;
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.story-list i {
  color: var(--blue);
}

.contact-cta {
  padding: 5rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue);
}

.contact-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 1rem 0 0;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.64);
  background: var(--charcoal);
}

.brand-lockup-light {
  color: var(--ivory-light);
}

.brand-lockup-light .brand-mark {
  color: var(--navy);
  background: var(--ivory);
}

.brand-lockup-light .brand-logo-mark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--navy);
}

.footer-intro {
  max-width: 430px;
  margin: 1.5rem 0 0;
  line-height: 1.75;
}

.site-footer h3 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: inherit;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.compact-footer {
  padding-top: 1rem;
}

.compact-footer .footer-bottom {
  margin-top: 0;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.product-breadcrumb a {
  text-decoration: none;
}

.product-detail-section {
  padding: 2rem 0 7rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
}

.product-gallery.single-visual {
  grid-template-columns: 1fr;
}

.product-gallery.single-visual .gallery-main {
  min-height: 720px;
}

.gallery-main,
.gallery-concept {
  position: relative;
  overflow: hidden;
}

.gallery-main {
  z-index: 2;
  min-height: 690px;
  border: 14px solid var(--white);
  box-shadow: var(--shadow);
}

.gallery-main > img {
  width: 100%;
  height: 100%;
  min-height: 662px;
  object-fit: cover;
}

.gallery-concept {
  height: 570px;
  margin-left: -1.5rem;
  background: var(--ivory);
}

.gallery-concept img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-disclosure {
  display: flex;
  gap: 1rem;
  max-width: 760px;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  background: var(--ivory-light);
  font-size: 0.75rem;
}

.ai-disclosure i {
  color: var(--blue);
  font-size: 1.2rem;
}

.ai-disclosure p {
  margin: 0;
}

.product-summary {
  position: sticky;
  top: 150px;
}

.product-summary h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.product-code {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.product-price {
  margin: 1.5rem 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-description {
  margin: 1.5rem 0 0;
  color: #565b59;
  line-height: 1.75;
}

.product-specs {
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.product-specs dl {
  margin: 0;
}

.product-specs dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.product-specs dt {
  color: var(--muted);
  font-weight: 500;
}

.product-specs dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
}

.micro-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.detail-notes {
  padding: 5rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.detail-notes span {
  color: #a9bdd2;
  font-family: var(--heading);
  font-size: 2rem;
}

.detail-notes h2 {
  margin: 1rem 0 0.8rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.detail-notes p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.stock-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4.5rem;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(110deg, rgba(54, 95, 135, 0.34), transparent 52%),
    var(--navy);
}

.stock-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.stock-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.stock-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.5rem 0 0;
  font-size: 1rem;
}

.stock-lion {
  position: relative;
  z-index: 2;
  width: min(270px, 58vw);
  max-height: 220px;
  object-fit: contain;
  opacity: 0.92;
}

.stock-toolbar {
  position: sticky;
  top: 112px;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(16px);
}

.stock-count {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stock-section {
  padding-top: 4rem;
}

.catalog-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  background: var(--ivory-light);
  font-size: 0.76rem;
}

.catalog-note i {
  color: var(--blue);
  font-size: 1.05rem;
}

.catalog-note p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .navbar .container {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 74px;
    padding-block: 0.75rem;
  }

  .navbar-toggler {
    display: grid;
    margin-left: auto;
  }

  .navbar-collapse {
    display: none;
    flex: 0 0 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 0.45rem;
    border-top: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .navbar-collapse {
    display: flex;
  }

  .navbar-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(246, 244, 237, 0.96) 0%, rgba(246, 244, 237, 0.78) 55%, rgba(246, 244, 237, 0.2) 100%);
  }

  .benefits-section {
    margin-top: 0;
  }

  .concept-comparison {
    margin-top: 2rem;
  }

  .story-art {
    min-height: 480px;
  }

  .product-summary {
    position: static;
  }

  .product-gallery {
    grid-template-columns: 1fr 0.72fr;
  }

  .gallery-main {
    min-height: 580px;
  }

  .gallery-concept {
    height: 470px;
  }

  .stock-toolbar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .announcement {
    font-size: 0.62rem;
  }

  .brand-lockup strong {
    font-size: 1.12rem;
  }

  .brand-lockup .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup .brand-logo-mark {
    width: 42px;
    height: 42px;
  }

  .hero,
  .hero-content {
    min-height: 580px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(246, 244, 237, 0.94) 0%, rgba(246, 244, 237, 0.88) 58%, rgba(246, 244, 237, 0.52) 100%);
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .benefit {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-space,
  .story-section {
    padding: 5rem 0;
  }

  .section-heading h2,
  .story-section h2,
  .editorial-strip h2,
  .contact-cta h2 {
    font-size: 2.8rem;
  }

  .product-media {
    min-height: 310px;
  }

  .product-media img {
    height: 310px;
  }

  .concept-comparison {
    grid-template-columns: 1fr;
  }

  .concept-swatch {
    min-height: 300px;
    margin: 0 2rem -2rem 0;
  }

  .concept-image {
    height: 470px;
    margin-left: 2rem;
  }

  .category-card {
    min-height: 340px;
  }

  .story-art {
    min-height: 420px;
    padding: 1rem;
  }

  .story-monogram {
    width: 100px;
    height: 100px;
    border-width: 10px;
  }

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

  .product-detail-section {
    padding-bottom: 5rem;
  }

  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-main,
  .gallery-concept {
    width: 100%;
    min-height: 0;
    height: 480px;
    margin: 0;
  }

  .gallery-main {
    order: 1;
    border-width: 8px;
  }

  .gallery-concept {
    order: 2;
  }

  .ai-disclosure {
    margin-bottom: 2rem;
  }

  .stock-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .stock-lion {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
