:root {
  --ink: #171b25;
  --muted: #6d645b;
  --paper: #fbf6ea;
  --ivory: #fffaf1;
  --sand: #eadcc1;
  --maroon: #7b2738;
  --vermilion: #b64b3c;
  --indigo: #1c3157;
  --teal: #235f5a;
  --gold: #c79a3d;
  --line: rgba(23, 27, 37, 0.14);
  --shadow: 0 26px 60px rgba(23, 27, 37, 0.16);
}

.catalogue-form-page {
  background: var(--ivory);
  color: #a86045;
}

.catalogue-form-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1.1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 28px;
}

.catalogue-form-panel,
.catalogue-form-output > div {
  background: rgba(255, 252, 244, 0.92);
  border: 1px solid rgba(168, 96, 69, 0.2);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(92, 52, 36, 0.1);
  padding: 28px;
}

.catalogue-form-note {
  color: #7b6872;
  font-size: 16px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.catalogue-card-form {
  display: grid;
  gap: 18px;
}

.catalogue-card-form label {
  display: grid;
  gap: 8px;
  color: #a86045;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-card-form input,
.catalogue-card-form select,
.catalogue-card-form textarea,
#card-code {
  width: 100%;
  border: 1px solid rgba(168, 96, 69, 0.24);
  border-radius: 12px;
  background: #fffaf0;
  color: #5f4d57;
  font: 15px/1.55 Arial, sans-serif;
  padding: 13px 14px;
}

.catalogue-card-form textarea,
#card-code {
  resize: vertical;
}

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

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

.catalogue-update-box {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(168, 96, 69, 0.2);
}

.catalogue-update-box label {
  display: grid;
  gap: 8px;
  color: #a86045;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-update-box input,
.catalogue-update-box select {
  width: 100%;
  border: 1px solid rgba(168, 96, 69, 0.24);
  border-radius: 12px;
  background: #fffaf0;
  color: #5f4d57;
  font: 15px/1.55 Arial, sans-serif;
  padding: 13px 14px;
}

.catalogue-form-actions .material-enquiry {
  border: 0;
  cursor: pointer;
}

.secondary-action {
  background: transparent;
  border: 1px solid rgba(168, 96, 69, 0.36) !important;
  color: #a86045;
}

.catalogue-form-output {
  display: grid;
  gap: 24px;
  align-content: start;
}

.catalogue-card-preview {
  width: min(360px, 100%);
}

@media (max-width: 900px) {
  .catalogue-form-shell,
  .catalogue-form-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--paper);
}

.not-found-main {
  width: min(760px, 100%);
  text-align: center;
}

.not-found-main img {
  width: 104px;
  margin: 0 auto 28px;
}

.not-found-main h1 {
  max-width: 760px;
  margin-inline: auto;
  color: #b55635;
}

.not-found-main > p:not(.section-label) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.not-found-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
}

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

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

.announcement-bar {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: 30px;
  overflow: hidden;
  background: #9f644c;
  color: #fff8e9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: announcement-scroll 68s linear infinite;
  will-change: transform;
}

.announcement-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}

.announcement-item {
  flex: none;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@keyframes announcement-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation-play-state: paused;
  }
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 30px 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, max-content) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2.3vw, 34px);
  padding: clamp(7px, 0.9vw, 10px) clamp(18px, 5vw, 68px) clamp(7px, 0.8vw, 9px);
  background: #fbfbf3;
  color: #b55635;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: #fbfbf3;
  color: #b55635;
  box-shadow: 0 14px 34px rgba(23, 27, 37, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  position: static;
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  text-align: center;
  transform: none;
}

.brand-logo {
  width: clamp(36px, 3.6vw, 52px);
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.brand-seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(20px, 2.55vw, 36px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  gap: 3px;
  justify-items: start;
}

.brand-tagline {
  display: block;
  max-width: min(980px, 62vw);
  color: currentColor;
  font-size: clamp(7px, 0.92vw, 13px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.25;
  opacity: 0.82;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  grid-column: 2;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(8px, 1.1vw, 18px);
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a,
.site-nav button {
  padding: 0;
  border-bottom: 0;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 230px;
  padding: 9px;
  border: 1px solid rgba(181, 86, 53, 0.14);
  border-radius: 14px;
  background: #fbfbf3;
  box-shadow: 0 22px 54px rgba(23, 27, 37, 0.16);
  color: #b55635;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(181, 86, 53, 0.14);
  border-left: 1px solid rgba(181, 86, 53, 0.14);
  background: #fbfbf3;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

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

.nav-dropdown.menu-dismissed:hover .nav-dropdown-menu,
.nav-dropdown.menu-dismissed:focus-within .nav-dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  padding: 11px 13px;
  border-radius: 10px;
  color: #b55635;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(181, 86, 53, 0.09);
  color: #8f3c23;
  transform: translateX(2px);
}

.nav-submenu {
  position: relative;
}

.nav-submenu::after {
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
  content: "";
}

.nav-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-submenu-trigger::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-submenu-menu {
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
  z-index: 11;
  display: grid;
  max-height: min(70vh, 560px);
  min-width: 210px;
  overflow-y: auto;
  padding: 9px;
  border: 1px solid rgba(181, 86, 53, 0.14);
  border-radius: 14px;
  background: #fbfbf3;
  box-shadow: 0 22px 54px rgba(23, 27, 37, 0.16);
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu-menu::before {
  position: absolute;
  top: 18px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid rgba(181, 86, 53, 0.14);
  border-left: 1px solid rgba(181, 86, 53, 0.14);
  background: #fbfbf3;
  content: "";
  transform: rotate(45deg);
}

.nav-submenu:hover .nav-submenu-menu,
.nav-submenu:focus-within .nav-submenu-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-dropdown.menu-dismissed .nav-submenu-menu {
  opacity: 0;
  pointer-events: none;
}

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

.nav-dropdown-trigger::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.site-nav .nav-cta {
  display: inline;
  min-height: 0;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.site-header.scrolled .site-nav .nav-cta,
.site-header.open .site-nav .nav-cta {
  border-color: transparent;
}

.nav-toggle {
  display: none;
  gap: 5px;
  width: 36px;
  height: 42px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.12);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.story-slider {
  position: relative;
  min-height: min(52.5vh, 515px);
  overflow: hidden;
  color: #fff8e9;
  background: #111827;
}

.page-main {
  padding-top: 96px;
  background: var(--paper);
}

.page-main > section:first-child {
  padding-top: clamp(76px, 9vw, 112px);
}

.journey-plain {
  padding: clamp(76px, 9vw, 112px) clamp(20px, 6vw, 88px);
}

.journey-verbatim {
  max-width: 1120px;
  margin: 0;
  white-space: pre-wrap;
  color: var(--ink);
  font: inherit;
  line-height: 1.75;
}

.journey-readup {
  padding: 0 clamp(18px, 5vw, 68px) clamp(74px, 9vw, 112px)
    calc(clamp(18px, 5vw, 68px) + clamp(42px, 4.4vw, 62px) + 12px);
  background: var(--paper);
}

.readup-section {
  max-width: 1360px;
  margin: 0;
  padding: clamp(42px, 7vw, 84px) 0;
  border-bottom: 1px solid var(--line);
}

.readup-section:first-child {
  padding-top: 0;
}

.journey-readup .readup-section:first-child {
  padding-top: calc(clamp(68px, 10vw, 128px) + 5lh);
}

.readup-section:last-child {
  border-bottom: 0;
}

.journey-readup .section-label {
  color: #b55635;
}

.readup-section h1,
.readup-section h2,
.readup-section h3,
.readup-section h4 {
  color: #b55635;
  font-weight: 800;
}

.readup-section h1 {
  max-width: 920px;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
}

.readup-section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
}

.readup-section h3 {
  margin-top: 42px;
  color: #b55635;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.readup-section h4 {
  margin: 0 0 10px;
  color: #b55635;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readup-section p,
.readup-section li {
  color: #7d6f80;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.78;
  text-align: justify;
}

.readup-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding-left: 22px;
}

.readup-section blockquote {
  max-width: 1180px;
  margin: 24px 0;
  padding: 24px clamp(22px, 4vw, 42px);
  border-left: 4px solid #b55635;
  background: var(--ivory);
  color: #b55635;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2.15rem);
  line-height: 1.28;
}

.readup-values {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.readup-values article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
}

.readup-values h4 {
  min-height: 34px;
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
}

.readup-values p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: left;
  text-wrap: pretty;
}

.slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 126px clamp(20px, 6vw, 88px) 82px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img,
.slide-shade {
  position: absolute;
  inset: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.slide.active img {
  transform: scale(1);
}

.logo-slide,
.hero-opening {
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 250, 241, 0.16), transparent 34%),
    linear-gradient(120deg, #201b1a, #5f312a);
}

.logo-slide img {
  object-fit: contain;
  object-position: 72% center;
  padding: clamp(96px, 11vw, 150px) clamp(24px, 7vw, 108px);
  opacity: 0.42;
  filter: sepia(0.18) saturate(1.2);
}

.logo-slide.active img {
  transform: scale(1.02);
}

.slide-shade {
  background:
    linear-gradient(90deg, rgba(10, 14, 23, 0.82), rgba(10, 14, 23, 0.46) 56%, rgba(10, 14, 23, 0.18)),
    linear-gradient(0deg, rgba(10, 14, 23, 0.56), transparent 42%);
}

.logo-slide .slide-shade {
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.88), rgba(64, 38, 34, 0.62) 52%, rgba(64, 38, 34, 0.28)),
    linear-gradient(0deg, rgba(13, 13, 15, 0.58), transparent 48%);
}

.hero-opening .slide-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.86), rgba(44, 30, 28, 0.56) 55%, rgba(44, 30, 28, 0.18)),
    linear-gradient(0deg, rgba(9, 10, 13, 0.6), transparent 46%);
}

.crisis-slide .slide-shade {
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.9), rgba(20, 20, 22, 0.62) 55%, rgba(20, 20, 22, 0.24)),
    linear-gradient(0deg, rgba(6, 7, 9, 0.64), transparent 44%);
}

.authenticity-slide .slide-shade,
.weaver-story-slide .slide-shade,
.women-heritage-slide .slide-shade,
.sustainable-slide .slide-shade,
.brand-belief-slide .slide-shade,
.brand-bridge-slide .slide-shade,
.closing-legacy-slide .slide-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.86), rgba(36, 27, 28, 0.56) 55%, rgba(36, 27, 28, 0.2)),
    linear-gradient(0deg, rgba(7, 8, 12, 0.58), transparent 46%);
}

.slide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.slide-copy {
  position: absolute;
  z-index: 1;
  top: clamp(138px, 34%, 176px);
  left: clamp(20px, 6vw, 88px);
  max-width: min(1180px, calc(100vw - 176px));
  transform: none;
}

.slide-copy h1,
.slide-copy h2 {
  max-width: none;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.05vw, 2.15rem);
  font-weight: 600;
  line-height: 1.28;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label {
  color: var(--maroon);
}

.pane-title-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 16px;
}

.pane-title-row .section-label {
  margin-bottom: 0;
}

.pane-filter-dropdown {
  position: relative;
  color: var(--maroon);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pane-filter-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
  content: "";
}

.pane-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  list-style: none;
  cursor: pointer;
  text-transform: inherit;
  user-select: none;
  transition: color 160ms ease;
}

.pane-filter-trigger:hover,
.pane-filter-dropdown:focus-within .pane-filter-trigger,
.pane-filter-dropdown:hover .pane-filter-trigger {
  color: var(--gold);
}

.pane-filter-trigger::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.pane-filter-dropdown:hover .pane-filter-trigger::after,
.pane-filter-dropdown:focus-within .pane-filter-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.pane-filter-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 230px;
  padding: 9px;
  border: 1px solid rgba(181, 86, 53, 0.14);
  border-radius: 14px;
  background: #fbfbf3;
  box-shadow: 0 22px 54px rgba(23, 27, 37, 0.16);
  color: #b55635;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.pane-filter-menu::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(181, 86, 53, 0.14);
  border-left: 1px solid rgba(181, 86, 53, 0.14);
  background: #fbfbf3;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.pane-filter-menu a {
  position: relative;
  z-index: 1;
  padding: 11px 13px;
  border-radius: 10px;
  color: #b55635;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.pane-filter-menu a:hover,
.pane-filter-menu a:focus-visible {
  background: rgba(181, 86, 53, 0.09);
  color: #8f3c23;
  transform: translateX(2px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4.35vw, 4.15rem);
}

.single-line-brand {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 4.7vw, 4.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.slide-copy p:not(.eyebrow) {
  max-width: 920px;
  margin: 14px 0 0;
  color: rgba(255, 248, 233, 0.88);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.45vw, 1.32rem);
  font-weight: 400;
  line-height: 1.55;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 68%;
  bottom: auto;
  display: grid;
  width: 48px;
  height: 48px;
  margin-block: 0;
  place-items: center;
  border: 1px solid rgba(255, 248, 233, 0.58);
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.28);
  color: #fff8e9;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(17, 24, 39, 0.46);
}

.slider-arrow span {
  font-size: 24px;
  line-height: 1;
}

.slider-arrow-prev {
  left: clamp(18px, 3vw, 42px);
}

.slider-arrow-next {
  right: clamp(18px, 3vw, 42px);
}

.slider-controls button,
.slider-arrow {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 248, 233, 0.72);
  border-radius: 50%;
  background: transparent;
}

.slider-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
}

.slider-pause {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 248, 233, 0.72);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.24);
  color: #fff8e9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.slider-pause span {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
}

.slider-pause span::before,
.slider-pause span::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.slider-pause span::before {
  left: 3px;
}

.slider-pause span::after {
  right: 3px;
}

.slider-pause.is-paused span::before {
  top: 0;
  left: 4px;
  bottom: auto;
  width: 0;
  height: 0;
  border-top: 6.5px solid transparent;
  border-bottom: 6.5px solid transparent;
  border-left: 9px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.slider-pause.is-paused span::after {
  display: none;
}

.slider-pause:hover {
  border-color: var(--gold);
  background: rgba(17, 24, 39, 0.42);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #161616;
}

.button.secondary {
  border: 1px solid rgba(255, 248, 233, 0.72);
  color: #fff8e9;
}

.button.whatsapp {
  border: 1px solid rgba(181, 86, 53, 0.28);
  background: #f7efe1;
  color: #b55635;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-actions .button.secondary {
  border-color: rgba(181, 86, 53, 0.32);
  color: #b55635;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 248, 233, 0.56);
  border-radius: 50%;
  background: #9f644c;
  color: #fff8e9;
  box-shadow: 0 18px 42px rgba(23, 27, 37, 0.18);
}

.whatsapp-float:hover {
  background: #b55635;
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
  display: block;
}

.belief-intro-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(68px, 10vw, 128px) clamp(20px, 6vw, 88px) clamp(92px, 13vw, 160px);
  background: linear-gradient(110deg, var(--paper) 0 48%, var(--ivory) 48% 100%);
}

.belief,
.intro,
.why,
.impact,
.craft,
.preservation,
.story-panel,
.weaves,
.philosophy,
.styling-studio,
.testimonials-pane,
.closing {
  position: relative;
  padding: clamp(68px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

.belief {
  background: var(--paper);
}

.belief h2 {
  max-width: 1180px;
}

.belief h2,
.intro h2,
.why h2,
.impact h2,
.craft h2,
.closing h2 {
  font-size: clamp(1.12rem, 2.1vw, 2.15rem);
}

.craft .heritage-motto-heading {
  display: block;
  max-width: min(100%, calc(100vw - 56px));
  color: #b55635;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.48vw, 1.65rem);
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  white-space: normal;
  text-wrap: auto;
  word-break: normal;
  overflow-wrap: anywhere;
}

.craft .heritage-motto-intro {
  width: auto;
  max-width: none;
  min-width: 0;
}

.motto-mobile-break {
  display: none;
}

.belief-intro-pair .belief,
.belief-intro-pair .intro {
  padding: 56px 0 0;
  background: transparent;
}

.belief-intro-pair .belief {
  padding-top: 17px;
}

.belief-intro-pair .intro {
  display: block;
  transform: translateY(20%);
}

.belief-intro-pair .intro p:last-child {
  margin-top: 24px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  background: var(--ivory);
}

.intro > *,
.section-intro,
.why-copy {
  min-width: 0;
}

.intro p:last-child,
.why-copy p,
.section-intro p:not(.section-label),
.impact-grid p,
.collection-grid p,
.process p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.why {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  background: var(--sand);
}

.why figure {
  margin: 0;
}

.why figure img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quiet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.quiet-list span {
  min-height: 78px;
  display: grid;
  align-items: center;
  padding: 16px 18px;
  border-left: 3px solid var(--maroon);
  background: rgba(255, 250, 241, 0.48);
  font-weight: 800;
}

.impact {
  background: var(--paper);
}

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

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  background: var(--ivory);
}

.story-panel-copy p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.9;
}

.story-panel figure {
  margin: 0;
}

.story-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.journey-hero,
.journey-section,
.journey-overview,
.vision-mission,
.journey-values,
.social-framework,
.belief-strip {
  position: relative;
  padding: clamp(68px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

.belief-strip {
  color: #fff8e9;
  background:
    linear-gradient(120deg, rgba(123, 39, 56, 0.95), rgba(28, 49, 87, 0.88)),
    url("assets/collection-heritage-silk.jpg") center / cover;
}

.belief-strip h2 {
  max-width: 1120px;
  font-size: clamp(2rem, 4vw, 4.15rem);
}

.journey-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  background: var(--ivory);
}

.journey-hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
}

.journey-hero p:not(.section-label),
.journey-overview p,
.vision-mission li,
.value-grid p,
.framework-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.journey-hero figure {
  margin: 0;
}

.journey-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.journey-overview {
  background: var(--paper);
}

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

.journey-overview.alt {
  background: var(--ivory);
}

.journey-section.alt {
  background: var(--ivory);
}

.journey-document .section-label,
.journey-document .focus-list span,
.journey-document .value-grid span,
.journey-document .framework-list span {
  color: #b55635;
}

.journey-overview blockquote {
  max-width: 1000px;
  margin: 34px 0 0;
  padding: clamp(24px, 4vw, 42px);
  border-left: 4px solid var(--maroon);
  background: rgba(255, 250, 241, 0.7);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  line-height: 1.18;
}

.focus-list,
.value-grid,
.framework-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.focus-list span,
.value-grid article,
.framework-list article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.58);
}

.focus-list span,
.value-grid span,
.framework-list span {
  color: var(--vermilion);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--paper);
}

.vision-mission article {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.62);
}

.vision-mission ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding-left: 20px;
}

.journey-values {
  background: var(--ivory);
}

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

.value-grid article {
  display: grid;
  gap: 22px;
}

.social-framework {
  background: var(--paper);
}

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

.framework-list article {
  min-height: 260px;
}

.framework-list h3 {
  margin-top: 28px;
}

.journey-document .section-label,
.journey-document .focus-list span,
.journey-document .value-grid span,
.journey-document .framework-list span {
  color: #b55635;
}

.weaves {
  background: var(--paper);
}

.weave-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.weave-grid article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.5);
}

.weave-grid span,
.philosophy-grid span,
.studio-list span {
  color: var(--vermilion);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weave-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.weave-grid a {
  display: grid;
  min-height: 250px;
  color: inherit;
}

.weave-grid a article {
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.weave-grid a:hover article {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(23, 27, 37, 0.09);
}

.weave-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.weave-detail .section-intro {
  max-width: none;
  margin-bottom: 0;
}

.detail-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
}

.detail-panel h3 {
  color: #b55635;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: #7d6f80;
  line-height: 1.65;
}

.weave-gallery {
  margin-top: clamp(48px, 7vw, 86px);
}

.weave-gallery .section-intro {
  max-width: 980px;
}

.weave-gallery .section-intro h2 {
  color: #b55635;
  font-size: clamp(1.9rem, 3vw, 3rem);
}
.weaves > .section-intro h1,
.know-your-weaver-page .section-intro h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.3rem);
}

.journey-readup .readup-section:first-child h1 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
}

.weave-gallery .section-intro p:last-child {
  max-width: 820px;
  margin-top: 18px;
  color: #7d6f80;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.7;
}

.weave-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.weave-gallery-card {
  width: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(181, 86, 53, 0.16);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 22px 48px rgba(23, 27, 37, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.weave-gallery-card img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.weave-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(23, 27, 37, 0.14);
}

.weave-gallery-card:hover img {
  transform: scale(0.94);
}

.heritage-detail-source [data-filter-card][data-detail-href] {
  cursor: pointer;
}

.heritage-detail-source [data-filter-card][data-detail-href]:focus-visible {
  outline: 3px solid rgba(181, 86, 53, 0.42);
  outline-offset: 4px;
}

.weave-gallery-card span {
  display: block;
  color: #b55635;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weave-card-body {
  min-height: 210px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.weave-card-body h3 {
  flex: 1;
  margin: 13px 0 0;
  color: #7d6f80;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.28vw, 1.24rem);
  font-weight: 500;
  line-height: 1.55;
}

.card-tags {
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(181, 86, 53, 0.16);
  border-radius: 999px;
  background: rgba(181, 86, 53, 0.07);
  color: #8f3c23;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.enquiry-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(181, 86, 53, 0.16);
  border-radius: 12px;
  background: #f7efe1;
}

.enquiry-strip p {
  max-width: 760px;
  margin: 0;
  color: #7d6f80;
  line-height: 1.7;
}

.catalogue-detail-page .page-main {
  padding-top: clamp(118px, 13vw, 154px);
}

.catalogue-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.catalogue-detail-copy {
  display: grid;
  align-content: center;
}

.catalogue-detail-copy .section-label {
  margin-bottom: 16px;
}

.catalogue-detail-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #b55635;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.catalogue-detail-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #7d6f80;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.75;
  text-align: justify;
}

.catalogue-detail-visual {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(181, 86, 53, 0.16);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 24px 58px rgba(23, 27, 37, 0.12);
}

.catalogue-detail-visual .material-image,
.catalogue-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.catalogue-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.catalogue-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(181, 86, 53, 0.18);
  border-radius: 999px;
  background: rgba(181, 86, 53, 0.06);
  color: #8f3c23;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(44px, 6vw, 80px);
}

.catalogue-detail-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(181, 86, 53, 0.14);
  border-radius: 14px;
  background: #fbf6ec;
}

.catalogue-detail-panel h2 {
  margin: 0 0 14px;
  color: #b55635;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.catalogue-detail-panel p,
.catalogue-detail-panel li {
  color: #7d6f80;
  line-height: 1.65;
  text-align: justify;
}

.catalogue-detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  color: #fff8e9;
  background:
    linear-gradient(120deg, rgba(23, 27, 37, 0.9), rgba(123, 39, 56, 0.84)),
    url("assets/collection-heritage-silk.jpg") center / cover;
}

.philosophy .section-label {
  color: var(--gold);
}

.philosophy h2 {
  max-width: 720px;
}

.philosophy > p {
  grid-column: 2;
  max-width: 760px;
  margin: -12px 0 0;
  color: rgba(255, 248, 233, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.85;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 248, 233, 0.22);
  border-left: 1px solid rgba(255, 248, 233, 0.22);
}

.philosophy-grid article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255, 248, 233, 0.22);
  border-bottom: 1px solid rgba(255, 248, 233, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.philosophy-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1;
}

.philosophy-grid span {
  color: rgba(255, 248, 233, 0.76);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.impact-grid article {
  min-height: 310px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.55);
}

.impact-grid article span,
.collection-grid span,
.process span {
  color: var(--vermilion);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-grid h3 {
  margin-top: 74px;
}

.craft {
  background: var(--ivory);
}

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

.collection-grid article {
  background: var(--paper);
  box-shadow: 0 20px 46px rgba(23, 27, 37, 0.08);
}

.collection-card-link {
  display: block;
}

.collection-card-link article {
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-card-link:hover article {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(23, 27, 37, 0.12);
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.collection-grid div {
  padding: 22px;
}

.collection-grid h3 {
  margin-top: 12px;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.14;
}

.material-marquee {
  overflow: hidden;
  margin-top: clamp(34px, 5vw, 56px);
  padding: 10px 0 2px;
}

.heritage-scroll-stack {
  --pane16-card-width: min(360px, 78vw);
  --pane16-card-gap: 22px;
  --pane16-visible-cards: 4;
  --pane16-scroll-duration: 72s;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  margin-top: clamp(34px, 5vw, 56px);
}

.heritage-scroll-row {
  display: grid;
  gap: 14px;
}

.heritage-scroll-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.heritage-scroll-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.heritage-scroll-heading .section-label {
  margin: 0;
}

.heritage-scroll-heading a,
.heritage-collapse-toggle {
  color: #b55635;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heritage-collapse-toggle {
  cursor: pointer;
  padding: 0;
}

.heritage-collapse-toggle:hover,
.heritage-collapse-toggle:focus-visible,
.heritage-scroll-heading a:hover,
.heritage-scroll-heading a:focus-visible {
  color: #7b2738;
}

.heritage-scroll-row.is-collapsed .material-marquee {
  display: none;
}

.heritage-scroll-row .material-marquee {
  width: 100%;
  max-width: min(
    100%,
    calc((var(--pane16-card-width) * var(--pane16-visible-cards)) + (var(--pane16-card-gap) * (var(--pane16-visible-cards) - 1)))
  );
  margin-top: 0;
  margin-inline: auto;
}

.material-track {
  display: flex;
  width: max-content;
  gap: var(--pane16-card-gap, 22px);
  animation: none;
  transform: translateX(0);
}

.heritage-scroll-stack.is-marquee-ready .material-track {
  animation: material-scroll var(--pane16-scroll-duration, 72s) linear infinite;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.heritage-scroll-stack.is-marquee-ready .heritage-scroll-row:nth-child(2) .material-track,
.heritage-scroll-stack.is-marquee-ready .heritage-scroll-row:nth-child(3) .material-track {
  animation-delay: 0s;
}

.heritage-scroll-stack .material-track > .material-card,
.heritage-scroll-stack .material-track > .weave-gallery-card {
  flex: 0 0 var(--pane16-card-width, min(360px, 78vw));
  width: var(--pane16-card-width, min(360px, 78vw));
  min-width: var(--pane16-card-width, min(360px, 78vw));
  max-width: var(--pane16-card-width, min(360px, 78vw));
}

.material-track .pane16-collage-card {
  min-height: auto;
}

.pane16-collage-card .collage-link {
  display: block;
  overflow: hidden;
  background: var(--sand);
}

.collage-grid {
  height: 310px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #efe1c7;
  transition: transform 220ms ease;
}

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

.pane16-collage-card:hover .collage-grid {
  transform: scale(0.94);
}

.material-marquee:hover .material-track {
  animation-play-state: paused;
}

.material-static-grid {
  overflow: visible;
}

.material-static-grid .material-track {
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center;
  animation: none;
}

.material-static-grid .material-card {
  width: 100%;
  flex: none;
}

.material-static-grid [aria-hidden="true"] {
  display: none;
}

.material-card {
  width: min(360px, 78vw);
  flex: 0 0 min(360px, 78vw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(181, 86, 53, 0.16);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 22px 48px rgba(23, 27, 37, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(23, 27, 37, 0.14);
}

.material-card-link {
  display: block;
  flex: 0 0 min(360px, 78vw);
}

.material-card-link .material-card {
  width: 100%;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.material-card-link:hover .material-card {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(23, 27, 37, 0.14);
}

.material-image-link {
  display: block;
  overflow: hidden;
  background: var(--sand);
}

.material-image {
  width: 100%;
  height: 310px;
  background: var(--sand);
  background-image: url("assets/material-silk-fabric-sheet.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transition: transform 220ms ease;
}

.material-card:hover .material-image {
  transform: scale(0.94);
}

.material-mulberry {
  background-position: 0% 0%;
}

.material-tussar {
  background-position: 50% 0%;
}

.material-eri {
  background-position: 100% 0%;
}

.material-muga {
  background-position: 0% 100%;
}

.material-cotton {
  background-position: 50% 100%;
}

.material-linen {
  background-position: 100% 100%;
}

.material-banana-silk {
  background-image: linear-gradient(rgba(255, 242, 210, 0.08), rgba(96, 58, 28, 0.08)), url("assets/material-banana-silk-hd.webp");
  background-size: cover;
  background-position: center;
}

.material-card > div:not(.material-image),
.material-body {
  min-height: 168px;
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.material-card span {
  color: var(--vermilion);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-card h3 {
  flex: 1;
  margin: 13px 0 0;
  color: #7d6f80;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.28vw, 1.24rem);
  font-weight: 500;
  line-height: 1.55;
}

.material-enquiry {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: #b55635;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-credit {
  max-width: 980px;
  margin: 22px 0 0;
  color: #7d6f80;
  font-size: 0.82rem;
  line-height: 1.6;
}

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

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.styling-studio,
.testimonials-pane {
  background: var(--paper);
}

.styling-studio .section-intro,
.testimonials-pane .section-intro {
  max-width: none;
}

.styling-studio .section-label,
.testimonials-pane .section-label {
  color: #b55635;
}

.styling-studio .section-intro h2,
.testimonials-pane .section-intro h2 {
  color: #b55635;
  font-size: clamp(1.25rem, 2vw, 2.15rem);
  line-height: 1.28;
  white-space: nowrap;
}

.testimonial-marquee {
  overflow: hidden;
  margin-top: 34px;
  padding-block: 6px;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-scroll 58s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(360px, 76vw);
  min-height: 320px;
  flex: 0 0 min(360px, 76vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
}

.testimonial-avatar {
  width: 76px;
  height: 76px;
  display: block;
  border: 2px solid rgba(181, 86, 53, 0.22);
  border-radius: 50%;
  background-image: url("assets/customer-testimonials-sheet.webp");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  box-shadow: 0 12px 30px rgba(23, 27, 37, 0.12);
}

.avatar-1 { background-position: 0% 0%; }
.avatar-2 { background-position: 33.333% 0%; }
.avatar-3 { background-position: 66.666% 0%; }
.avatar-4 { background-position: 100% 0%; }
.avatar-5 { background-position: 0% 100%; }
.avatar-6 { background-position: 33.333% 100%; }
.avatar-7 { background-position: 66.666% 100%; }
.avatar-8 { background-position: 100% 100%; }

.testimonial-card p {
  margin: 0;
  color: #7d6f80;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.testimonial-card h3 {
  margin: 0 0 6px;
  color: #b55635;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-card div span {
  color: #7d6f80;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.studio-list {
  border-top: 1px solid var(--line);
}

.studio-list a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.6rem);
  line-height: 1.1;
}

.studio-list b {
  color: var(--maroon);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.studio-list a:hover {
  color: var(--maroon);
}

.preservation {
  color: #fff8e9;
  background:
    linear-gradient(120deg, rgba(28, 49, 87, 0.96), rgba(123, 39, 56, 0.9)),
    url("assets/collection-heritage-silk.jpg") center / cover;
}

.preservation .section-label {
  color: var(--gold);
}

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

.process article {
  padding: 28px;
  border: 1px solid rgba(255, 248, 233, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.process p {
  margin-bottom: 0;
  color: rgba(255, 248, 233, 0.78);
}

.closing {
  color: #fff8e9;
  background:
    linear-gradient(120deg, rgba(123, 39, 56, 0.95), rgba(28, 49, 87, 0.88)),
    url("assets/hero-silk-drape.jpg") center / cover;
}

.closing .section-label {
  color: var(--gold);
}

.closing h2 {
  max-width: 1080px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.policy-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(150px, 17vw, 210px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.policy-intro {
  max-width: 900px;
  padding-bottom: clamp(36px, 5vw, 64px);
}

.policy-intro .section-label {
  margin-bottom: 16px;
}

.policy-intro h1 {
  max-width: 920px;
  margin: 0;
  color: #b55635;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.03;
}

.policy-intro > p:not(.section-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #7d6f80;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.policy-intro span {
  display: block;
  margin-top: 18px;
  color: #a36a51;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-sections {
  border-top: 1px solid var(--line);
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.7fr);
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(30px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0;
  color: #b55635;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
}

.policy-section p {
  margin: 0;
  color: #7d6f80;
  line-height: 1.85;
  text-align: justify;
}

.policy-contact {
  max-width: 760px;
  padding-top: clamp(42px, 6vw, 72px);
}

.policy-contact h2 {
  margin: 0;
  color: #b55635;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 500;
}

.policy-contact p {
  margin: 16px 0 24px;
  color: #7d6f80;
  line-height: 1.8;
}

.site-footer {
  color: #fff8e9;
  background: #a36a51;
}

.footer-main {
  position: relative;
  padding-right: clamp(20px, 6vw, 88px);
  padding-left: clamp(20px, 6vw, 88px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 0.9fr) repeat(4, minmax(100px, 0.5fr)) minmax(360px, 1.5fr);
  gap: clamp(18px, 2.2vw, 34px);
  padding-top: clamp(34px, 4vw, 48px);
  padding-bottom: clamp(30px, 3.5vw, 44px);
  box-sizing: border-box;
}

.footer-main > * {
  min-width: 0;
}

.footer-brand-block {
  grid-column: 1;
  grid-row: 1;
  max-width: 330px;
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: #fff8e9;
  font-family: "Segoe Script Local", "Segoe Script", cursive;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.2;
}

.footer-brand-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.footer-brand-socials a {
  width: fit-content;
  color: rgba(255, 248, 233, 0.78);
  font-size: 12px;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-brand-socials a:has(.footer-social-icon) {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 233, 0.34);
  border-radius: 50%;
}

.footer-brand-socials a:hover,
.footer-brand-socials a:focus-visible {
  color: #fff8e9;
  transform: translateY(-1px);
}

.footer-brand-block p,
.footer-contact p {
  margin: 14px 0 0;
  color: rgba(255, 248, 233, 0.72);
  line-height: 1.6;
}

.footer-subscribe {
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  display: grid;
  gap: 10px;
  max-width: 300px;
  margin: 0;
}

.footer-subscribe label {
  color: #fff8e9;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-subscribe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(255, 248, 233, 0.48);
}

.footer-subscribe input {
  min-width: 0;
  padding: 10px 8px 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff8e9;
  font: inherit;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 248, 233, 0.58);
}

.footer-subscribe button {
  padding: 10px 0 10px 14px;
  border: 0;
  background: transparent;
  color: #fff8e9;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-subscribe button:hover,
.footer-subscribe button:focus-visible {
  color: #fff;
}

.footer-subscribe .footer-subscribe-consent,
.footer-subscribe .footer-subscribe-status {
  margin: 0;
  color: rgba(255, 248, 233, 0.62);
  font-size: 10px;
  line-height: 1.55;
}

.footer-subscribe-consent a {
  color: #fff8e9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-subscribe-status:empty {
  display: none;
}

.site-footer .footer-copyright {
  grid-column: 1 / 3;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 4px;
  color: rgba(255, 248, 233, 0.58);
  font-size: clamp(13px, 1.35vw, 22px);
  line-height: 1.5;
  white-space: nowrap;
}

.footer-main > nav[aria-label="Explore heritage weaves"] {
  grid-column: 3;
  grid-row: 1;
}

.footer-main > nav[aria-label="Our story"] {
  grid-column: 4;
  grid-row: 1;
}

.footer-main > nav[aria-label="Customer service"] {
  grid-column: 5;
  grid-row: 1;
}

.footer-main > nav[aria-label="Quick links"] {
  grid-column: 6;
  grid-row: 1;
}

.footer-main > .footer-contact {
  grid-column: 7;
  grid-row: 1;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
  font-style: normal;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 7px;
  color: #fff8e9;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 248, 233, 0.78);
  line-height: 1.45;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-whatsapp-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.footer-qr-item {
  width: auto !important;
  min-width: 0;
  display: grid;
  gap: 6px;
  justify-items: center;
  color: rgba(255, 248, 233, 0.72) !important;
  font-size: 16px;
  line-height: 1.2 !important;
  text-align: center;
  overflow-wrap: anywhere;
}

.footer-qr-item img {
  width: 128px;
  max-width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1;
  display: block;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
}

.footer-qr-item:hover,
.footer-qr-item:focus-visible {
  transform: none !important;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff8e9;
  transform: translateX(2px);
}

.how-to-buy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.how-to-buy-page .page-main {
  flex: 1;
}

.how-to-buy-container {
  max-width: 950px;
  margin: auto;
  padding: clamp(70px, 9vw, 112px) 24px;
  color: #3b2416;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

.how-to-buy-container h1 {
  max-width: none;
  margin-bottom: 10px;
  color: #4a2c1a;
  font-size: clamp(2.1rem, 4vw, 2.65rem);
  text-align: center;
}

.how-to-buy-container .subtitle {
  margin-bottom: 28px;
  color: #7a5a43;
  font-size: 16px;
  text-align: center;
}

.how-to-buy-container .journey-strip {
  margin: 0 auto 48px;
  padding: 18px 22px;
  border: 1px solid #d8c3ad;
  background: #efe3d4;
  color: #5b351f;
  font-size: 19px;
  letter-spacing: 0.3px;
  text-align: center;
}

.how-to-buy-container h2 {
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8c3ad;
  color: #5b351f;
  font-size: 24px;
}

.how-to-buy-container p,
.how-to-buy-container li {
  font-size: 17px;
}

.how-to-buy-container ul {
  padding-left: 24px;
}

.how-to-buy-container .channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin-top: 25px;
}

.how-to-buy-container .channel-card,
.how-to-buy-container .contact-box {
  padding: 22px;
  border: 1px solid #dbc7b4;
  background: #fffaf4;
}

.how-to-buy-container .channel-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.how-to-buy-container .channel-card h3 {
  margin-top: 0;
  color: #5b351f;
  font-size: 20px;
}

.how-to-buy-container .channel-card > p {
  flex: 1;
  margin-bottom: 18px;
  text-align: left;
}

.how-to-buy-container .qr-code {
  width: 145px;
  height: 145px;
  margin: auto auto 12px;
  padding: 8px;
  border: 1px solid #d8c3ad;
  background: #fff;
  object-fit: contain;
}

.how-to-buy-container .button-link {
  display: inline-block;
  align-self: center;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 2px;
  background: #6b3f24;
  color: #fffaf4;
  font-size: 15px;
}

.how-to-buy-container .step-note,
.how-to-buy-container .brand-note {
  border-left: 5px solid #8a5a35;
  background: #fffaf4;
}

.how-to-buy-container .step-note {
  margin-top: 22px;
  padding: 20px 24px;
}

.how-to-buy-container .brand-note {
  margin-top: 50px;
  padding: 28px;
  background: #efe3d4;
  font-size: 19px;
  font-style: italic;
}

.how-to-buy-container a,
.how-to-buy-container strong {
  color: #6b3f24;
}

@media (max-width: 800px) {
  .how-to-buy-container .channel-grid {
    grid-template-columns: 1fr;
  }

  .how-to-buy-container .journey-strip {
    font-size: 16px;
  }
}
.purchase-saree-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.purchase-saree-page .page-main {
  flex: 1;
}

.purchase-paths article {
  display: flex;
  flex-direction: column;
}

.purchase-paths article .button {
  align-self: flex-start;
  margin-top: auto;
}
.know-your-weaver-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.know-your-weaver-page .page-main {
  flex: 1;
}

@media (max-width: 1550px) {
  .footer-main {
    grid-template-columns: minmax(180px, 1.15fr) minmax(190px, 1fr) repeat(4, minmax(100px, 0.68fr));
  }

  .footer-main > .footer-contact {
    grid-column: 3 / -1;
    grid-row: 2;
  }

  .footer-qr-grid {
    width: min(100%, 520px);
  }
}

@media (max-width: 1180px) {
  body.mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  .footer-main {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .footer-brand-block {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-subscribe {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer .footer-copyright {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .footer-main > nav[aria-label="Explore heritage weaves"] {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-main > nav[aria-label="Our story"] {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-main > nav[aria-label="Customer service"] {
    grid-column: 2;
    grid-row: 3;
  }

  .footer-main > nav[aria-label="Quick links"] {
    grid-column: 3;
    grid-row: 3;
  }

  .footer-main > .footer-contact {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .catalogue-detail-hero {
    grid-template-columns: 1fr;
  }

  .catalogue-detail-visual,
  .catalogue-detail-visual .material-image,
  .catalogue-detail-visual img {
    min-height: 420px;
  }

  .catalogue-detail-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .brand {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }

  .site-nav {
    grid-column: auto;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 17px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(18px, 5vw, 68px);
    display: none;
    width: min(380px, calc(100vw - 36px));
    padding: 14px;
    border: 1px solid rgba(255, 248, 233, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.92);
    color: #fff8e9;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 124px);
    max-height: calc(100dvh - 124px);
    overflow-y: auto;
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.open .site-nav {
    display: grid;
    justify-self: auto;
    gap: 0;
    padding-top: 14px;
  }

  .site-header.open .site-nav a,
  .site-header.open .site-nav button {
    padding: 14px 12px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 248, 233, 0.14);
    text-align: left;
  }

  .site-header.open .nav-dropdown {
    display: grid;
  }

  .site-header.open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .site-header.open .nav-dropdown.is-open > .nav-dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.open .nav-dropdown-menu::before {
    display: none;
  }

  .site-header.open .nav-dropdown-menu a {
    padding: 11px 12px;
    border-bottom-color: rgba(255, 248, 233, 0.1);
    border-radius: 0;
    color: inherit;
  }

  .site-header.open .nav-dropdown-menu a:hover,
  .site-header.open .nav-dropdown-menu a:focus-visible {
    background: rgba(255, 248, 233, 0.08);
    color: var(--gold);
    transform: none;
  }

  .site-header.open .nav-submenu::after,
  .site-header.open .nav-submenu-menu::before {
    display: none;
  }

  .site-header.open .nav-submenu-trigger {
    justify-content: flex-start;
  }

  .site-header.open .nav-submenu-trigger::after {
    transform: rotate(45deg);
  }

  .site-header.open .nav-submenu.is-open > .nav-submenu-trigger::after {
    transform: rotate(135deg);
  }

  .site-header.open .nav-submenu-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .site-header.open .nav-submenu.is-open > .nav-submenu-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.open .site-nav .nav-cta {
    display: block;
    margin-top: 0;
    padding: 14px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 248, 233, 0.14);
  }

  .intro,
  .why,
  .story-panel,
  .philosophy,
  .weave-detail {
    grid-template-columns: 1fr;
  }

  .weave-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
  }

  .journey-hero,
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .belief-intro-pair {
    display: block;
    padding: clamp(68px, 10vw, 128px) clamp(20px, 6vw, 88px);
    background: var(--paper);
  }

  .belief-intro-pair .intro {
    margin-top: clamp(42px, 8vw, 72px);
    transform: none;
  }

  .impact-grid,
  .collection-grid,
  .process,
  .weave-grid,
  .philosophy-grid,
  .focus-list,
  .value-grid,
  .framework-list {
    grid-template-columns: 1fr;
  }

  .material-static-grid .material-track {
    grid-template-columns: repeat(2, minmax(280px, 360px));
    justify-content: center;
  }

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

  .philosophy > p {
    grid-column: auto;
    margin-top: 0;
  }

  .impact-grid article {
    min-height: auto;
  }

  .impact-grid h3 {
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .policy-shell {
    width: min(100% - 32px, 1180px);
    padding-top: 126px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .policy-section p {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .footer-subscribe {
    max-width: none;
  }

  .footer-main > .footer-contact {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .footer-main > nav[aria-label="Explore heritage weaves"] {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-main > nav[aria-label="Our story"] {
    grid-column: 2;
    grid-row: 3;
  }

  .footer-main > nav[aria-label="Customer service"] {
    grid-column: 1;
    grid-row: 4;
  }

  .footer-main > nav[aria-label="Quick links"] {
    grid-column: 2;
    grid-row: 4;
  }

  .footer-qr-grid {
    width: 100%;
    max-width: none;
  }

  .catalogue-detail-page .page-main {
    padding-top: 96px;
  }

  .catalogue-detail-copy h1 {
    font-size: clamp(2rem, 13vw, 3.6rem);
  }

  .catalogue-detail-visual,
  .catalogue-detail-visual .material-image,
  .catalogue-detail-visual img {
    min-height: 320px;
  }

  .site-header {
    padding: 8px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
    gap: 8px;
  }

  .brand-logo {
    width: clamp(34px, 10vw, 44px);
  }

  .brand-copy {
    min-width: 0;
  }

  .story-slider {
    min-height: 49vh;
  }

  .craft .heritage-motto-heading {
    white-space: normal;
    text-wrap: wrap;
  }

  .material-static-grid .material-track {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
  }

  .slide {
    padding: 102px 28px 90px;
  }

  h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.9rem);
    line-height: 1.08;
  }

  .single-line-brand {
    font-size: clamp(1.55rem, 7vw, 1.72rem);
  }

  .brand-name {
    font-size: clamp(14px, 4.3vw, 19px);
    white-space: normal;
    line-height: 1.08;
  }

  .brand-tagline {
    max-width: 100%;
    font-size: clamp(6px, 1.6vw, 7px);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .slide-copy {
    top: 38%;
    left: 28px;
    right: 28px;
    max-width: 330px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: clamp(1.22rem, 6.1vw, 1.62rem);
    line-height: 1.25;
  }

  .styling-studio .section-intro h2,
  .testimonials-pane .section-intro h2 {
    white-space: normal;
  }

  .eyebrow,
  .section-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .slide-copy p:not(.eyebrow),
  .intro p:last-child,
  .why-copy p,
  .section-intro p:not(.section-label) {
    font-size: 0.96rem;
  }

  .craft .heritage-motto-heading {
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    font-size: clamp(1.16rem, 5.15vw, 1.42rem);
    line-height: 1.22;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .slider-controls {
    bottom: 18px;
    left: 50%;
    justify-content: center;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    top: 68%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .slider-arrow span {
    font-size: 21px;
  }

  .slider-dots button {
    width: 10px;
    height: 10px;
  }

  .slider-pause {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .quiet-list {
    grid-template-columns: 1fr;
  }

  .weave-grid article,
  .philosophy-grid article {
    min-height: 180px;
  }

  .readup-values {
    grid-template-columns: 1fr;
  }

  .studio-list a {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    min-height: 76px;
    font-size: clamp(1.08rem, 5.4vw, 1.5rem);
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 460px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer .footer-copyright {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(10px, 3.2vw, 13px);
  }

  .footer-brand-block,
  .footer-subscribe,
  .footer-main > nav[aria-label="Explore heritage weaves"],
  .footer-main > nav[aria-label="Our story"],
  .footer-main > nav[aria-label="Customer service"],
  .footer-main > nav[aria-label="Quick links"] {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-qr-grid {
    gap: 6px;
  }

  .footer-qr-item img {
    width: min(128px, 100%);
  }
}

@media (max-width: 620px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .motto-mobile-break {
    display: block;
  }

  .craft .heritage-motto-intro {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    min-width: 0 !important;
  }

  .craft .heritage-motto-heading {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 18px !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-actions .button,
  .enquiry-strip .button {
    width: 100%;
    min-width: 0;
  }

  .detail-panel,
  .enquiry-strip {
    min-width: 0;
    max-width: 100%;
  }

  .weave-gallery-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .weave-gallery-card {
    width: 100%;
    max-width: calc(100vw - 56px);
  }

  .detail-panel li,
  .enquiry-strip p,
  .site-footer p {
    overflow-wrap: anywhere;
  }

  .material-static-grid .material-track {
    max-width: calc(100vw - 56px);
  }

  .material-card {
    max-width: calc(100vw - 56px);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .page-main,
  .weaves,
  .craft,
  .weave-detail,
  .section-intro,
  .detail-panel,
  .enquiry-strip,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .weave-detail .section-intro,
  .weave-detail .section-intro p,
  .detail-panel,
  .enquiry-strip {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer > div {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 36px);
    box-sizing: border-box;
  }

  .weaves,
  .craft {
    padding-right: 18px;
    padding-left: 18px;
  }

  .detail-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .detail-panel ul {
    padding-left: 16px;
  }
}
