:root {
  --ink: #24211d;
  --muted: #746b60;
  --line: #ded5ca;
  --paper: #f7f2ec;
  --soft: #eee5da;
  --accent: #7f604f;
  --accent-strong: #604538;
  --sage: #8fa090;
  --white: #fffaf5;
  --shadow: 0 24px 70px rgba(45, 35, 28, 0.14);
}

* {
  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.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(35, 28, 23, 0.58), rgba(35, 28, 23, 0));
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(247, 242, 236, 0.94);
  border-bottom: 1px solid rgba(127, 96, 79, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 620;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: #312821;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 1200ms ease forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 19, 0.78), rgba(28, 23, 19, 0.32) 46%, rgba(28, 23, 19, 0.08)),
    linear-gradient(0deg, rgba(28, 23, 19, 0.30), rgba(28, 23, 19, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  width: min(660px, calc(100% - 36px));
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px clamp(18px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0d7c3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 520;
  line-height: 0.92;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 250, 245, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 760;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 250, 245, 0.7);
}

.button.dark {
  background: var(--ink);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child,
.custom-copy p,
.inquiry p {
  color: var(--muted);
  font-size: 18px;
}

.fabric-grid {
  display: grid;
  gap: 22px;
}

.fabric-card {
  display: grid;
  min-height: 390px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border: 1px solid rgba(127, 96, 79, 0.15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(45, 35, 28, 0.07);
}

.fabric-card:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}

.fabric-card:nth-child(even) img {
  order: 2;
}

.fabric-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.fabric-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-strong);
  background: #efe4d8;
  font-size: 22px;
}

.fabric-copy p {
  margin-bottom: 20px;
  color: var(--muted);
}

.fabric-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fabric-copy li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5d5147;
  font-size: 13px;
  font-weight: 700;
}

.custom {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.custom-media {
  display: grid;
  gap: 20px;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.proof {
  padding-top: 0;
}

.selection {
  padding-top: 0;
}

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

.selection-grid div {
  min-height: 180px;
  padding: 26px;
  background: #fbf7f1;
}

.selection-grid strong,
.selection-grid span {
  display: block;
}

.selection-grid strong {
  margin-bottom: 12px;
  font-size: 17px;
}

.selection-grid span {
  color: var(--muted);
  font-size: 15px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-grid div {
  padding: 30px;
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.proof-grid span {
  color: var(--muted);
}

.inquiry {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(36, 33, 29, 0.96), rgba(96, 69, 56, 0.9)),
    var(--ink);
}

.inquiry .eyebrow,
.inquiry p {
  color: rgba(255, 250, 245, 0.78);
}

.inquiry h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.inquiry p {
  max-width: 680px;
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

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

  .hero-shade {
    background: linear-gradient(0deg, rgba(28, 23, 19, 0.74), rgba(28, 23, 19, 0.2));
  }

  .hero-content {
    justify-content: flex-end;
    padding: 110px 18px 58px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .intro,
  .custom,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .fabric-card,
  .fabric-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .fabric-card:nth-child(even) img {
    order: 0;
  }

  .fabric-card img {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

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

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

  .inquiry .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ==========================================================================
   Master B2B Navigation Styles (Copied from main style.css for complete styling)
   ========================================================================== */
:root {
  --muted: #716763;
  --accent-dark: #944f58;
  --line: #e7ddd7;
  --shadow: 0 16px 40px rgba(82,55,41,.08);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,247,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,221,215,.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: #2f2825;
}
.brand img {
  width: 150px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--accent-dark);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
}
.btn-sm {
  padding: 11px 16px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #b86c75;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-sm:hover {
  background: var(--accent-dark);
}
.nav-item {
  position: relative;
}
.nav-trigger {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.nav-trigger:hover, .nav-link:hover {
  color: var(--accent-dark);
}
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 18px);
  width: min(980px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(40,24,19,.16);
  padding: 22px;
  display: none;
  z-index: 80;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.nav-item:hover .mega-menu {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mega-col h4 {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 15px;
}
.mega-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 9px 0;
  text-decoration: none;
}
@media (max-width: 980px) {
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    margin-top: 12px;
  }
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
}
