:root {
  color-scheme: light;
  --paper: #f7efe4;
  --surface: #fffaf2;
  --surface-2: #eadcc8;
  --ink: #24231f;
  --muted: #74685c;
  --soft: #a27b5d;
  --line: #dccab5;
  --line-dark: rgba(32, 33, 29, 0.18);
  --sage: #73795e;
  --sage-dark: #3f4a3a;
  --oxblood: #7a302d;
  --brass: #b78b49;
  --smoke: #526774;
  --black: #24231f;
  --white: #fffdf7;
  --shadow: 0 18px 42px rgba(72, 52, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.82), rgba(241, 229, 213, 0.62)),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px 60px;
  border-bottom: 1px solid rgba(36, 35, 31, 0.12);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--oxblood);
  font-size: 13px;
  font-weight: 900;
}

.brand-text strong,
.brand-text small {
  display: block;
  white-space: nowrap;
}

.brand-text strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--oxblood);
  outline: none;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  color: var(--white);
  background: var(--oxblood);
  font-size: 14px;
  font-weight: 850;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--black);
  background: var(--brass);
  outline: none;
}

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

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

.hero > img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02) brightness(1.04) sepia(0.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 239, 228, 0.96) 0%, rgba(247, 239, 228, 0.82) 46%, rgba(247, 239, 228, 0.46) 100%),
    linear-gradient(0deg, rgba(247, 239, 228, 0.95) 0%, rgba(247, 239, 228, 0.18) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 860px;
  flex-direction: column;
  justify-content: center;
  padding: 88px 60px 112px;
  color: var(--ink);
}

.breadcrumb {
  margin: 0 0 32px;
  color: var(--soft);
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
}

h1 {
  max-width: 800px;
  font-size: clamp(48px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}

h3 {
  font-size: 20px;
  font-weight: 850;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--oxblood);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--black);
  background: var(--brass);
  outline: none;
}

.button.ghost {
  border-color: rgba(32, 33, 29, 0.22);
  color: var(--ink);
  background: rgba(255, 248, 236, 0.58);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--ink);
  background: var(--surface);
  outline: none;
}

.hero .button.ghost {
  border-color: rgba(36, 35, 31, 0.22);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.58);
}

.hero .button.ghost:hover,
.hero .button.ghost:focus-visible {
  border-color: var(--oxblood);
  background: var(--surface);
}

.info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.info-row div {
  min-height: 112px;
  padding: 24px 60px;
  background: rgba(255, 250, 242, 0.86);
}

.info-row span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.info-row strong,
.info-row a {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.section {
  padding: 96px 60px;
}

.section-heading {
  max-width: 780px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(183, 139, 73, 0.16), rgba(255, 250, 242, 0) 48%),
    var(--surface);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  margin: 0;
}

.range-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
  padding: 96px 60px;
  border-top: 1px solid var(--line);
  background: #f5eddf;
}

.range-copy {
  max-width: 600px;
}

.range-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.range-images {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.range-images img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) sepia(0.08);
  box-shadow: 0 14px 34px rgba(47, 36, 24, 0.16);
}

.fabrics {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.collection-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 28px;
}

.collection-note span {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.82);
  font-size: 14px;
  font-weight: 820;
}

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

.fabric-toggle {
  width: fit-content;
  margin: 34px auto 0;
}

.fabric-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(47, 36, 24, 0.1);
}

.fabric-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}

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

.fabric-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.fabric-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--oxblood);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.fabric-body h3 {
  margin-bottom: 16px;
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.product-specs dt {
  color: var(--soft);
  font-weight: 800;
}

.product-specs dd {
  color: var(--ink);
  font-weight: 740;
}

.fabric-link {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--oxblood);
  font-size: 14px;
  font-weight: 850;
}

.fabric-link:hover,
.fabric-link:focus-visible {
  color: var(--brass);
  outline: none;
}

.inspection-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
  padding: 96px 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eee1cf;
}

.inspection-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.inspection-band img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 11 / 7;
  object-fit: cover;
}

.inspection-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.inspection-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.capabilities {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(183, 139, 73, 0.14), rgba(255, 250, 242, 0)),
    #f0e5d6;
  color: var(--ink);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.capability-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 250, 242, 0.82);
}

.cap-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 900;
}

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

.update-workflow {
  background: var(--surface);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--oxblood);
  font-weight: 900;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 64px;
  padding: 100px 60px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contact-copy {
  max-width: 700px;
  align-self: start;
}

.contact-copy .breadcrumb {
  margin-bottom: 28px;
  color: var(--soft);
}

.contact-copy p:not(.eyebrow):not(.breadcrumb) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact-lines div {
  display: grid;
  gap: 4px;
}

.contact-lines dt,
.contact-lines dd {
  margin: 0;
}

.contact-lines dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lines dd {
  color: var(--ink);
  font-weight: 850;
}

.contact-lines a {
  color: var(--oxblood);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

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

.inquiry-form span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

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

.inquiry-form textarea {
  min-height: 136px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #9f9386;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 3px rgba(122, 48, 45, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--oxblood);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .site-header,
  .hero-content,
  .section,
  .range-story,
  .inspection-band,
  .contact-section,
  .site-footer {
    padding-right: 36px;
    padding-left: 36px;
  }

  .info-row div {
    padding-right: 36px;
    padding-left: 36px;
  }

  .fabric-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 64px;
    padding-bottom: 86px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .info-row,
  .intro,
  .range-story,
  .inspection-band,
  .contact-section,
  .timeline {
    grid-template-columns: 1fr;
  }

  .info-row div {
    min-height: 92px;
  }

  .section,
  .range-story,
  .inspection-band,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-content,
  .section,
  .range-story,
  .inspection-band,
  .contact-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .info-row div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-text small {
    display: none;
  }

  .header-action {
    min-width: 118px;
    padding: 0 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .fabric-grid,
  .range-images,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .range-images img {
    min-height: 280px;
  }

  .fabric-card {
    min-height: auto;
  }

  .fabric-body,
  .capability-grid article,
  .timeline li,
  .inquiry-form {
    padding: 18px;
  }

  .product-specs div {
    grid-template-columns: 118px 1fr;
    gap: 10px;
  }
}
