:root {
  --paper: #f6f1e9;
  --paper-strong: #eee4d6;
  --ink: #1d1b18;
  --muted: #6a6257;
  --line: rgba(29, 27, 24, 0.14);
  --forest: #243f32;
  --sage: #758674;
  --clay: #a46845;
  --steel: #2f3437;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(31, 28, 22, 0.16);
}

.hero .hero-copy,
.hero .hero-copy .eyebrow,
.hero .hero-copy h1,
.hero .hero-copy p:not(.eyebrow) {
  color: #fff !important;
}

.hero .hero-copy h1 {
  font-size: clamp(21px, 3.5vw, 46px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 52px);
  color: var(--white);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 241, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 13px;
}

.brand-copy small {
  color: currentColor;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.72;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
}

.site-header.is-solid .brand-mark {
  color: var(--white);
  background: var(--ink);
}

.desktop-nav {
  gap: clamp(20px, 3vw, 42px);
  font-size: 13px;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  min-width: 150px;
  display: grid;
  gap: 14px;
  padding: 20px 24px;
  color: var(--ink);
  background: rgba(246, 241, 233, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(29, 27, 24, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

.desktop-nav a,
.mobile-nav a,
.mobile-nav span,
.nav-trigger {
  transition: opacity 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.nav-trigger:hover {
  opacity: 0.62;
}

.header-actions {
  gap: 12px;
}

.language-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}

.language-toggle {
  min-width: 48px;
  height: 34px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  gap: 5px;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  padding: 18px;
  color: var(--ink);
  background: rgba(246, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav span {
  padding: 18px 0 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: start;
  padding: 112px clamp(18px, 5vw, 72px) 42px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.01);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(19, 21, 18, 0.58), rgba(19, 21, 18, 0.08) 58%),
    linear-gradient(0deg, rgba(19, 21, 18, 0.42), rgba(19, 21, 18, 0) 46%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  transform: none;
}

.hero-copy h1 {
  color: #fff;
}

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

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero-links,
.manager-actions,
.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-link,
.secondary-link,
.primary-button,
.ghost-button,
.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.primary-link,
.primary-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.primary-link.dark,
.primary-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.secondary-link,
.ghost-button,
.text-button {
  color: inherit;
  background: transparent;
}

.primary-link:hover,
.secondary-link:hover,
.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 114px;
  padding: 26px clamp(18px, 3vw, 44px);
  background: var(--paper);
}

.quick-strip span {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.quick-strip small {
  color: var(--muted);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.band-light {
  background: var(--paper-strong);
}

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

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

.split-heading {
  max-width: none;
  display: flex;
  gap: 26px;
  align-items: end;
  justify-content: space-between;
}

.collection-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.collection-item,
.material-grid article,
.material-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper);
}

.material-card {
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  text-align: left;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.material-card:hover,
.material-card.is-active {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(29, 27, 24, 0.28);
}

.material-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.collection-item span {
  display: block;
  margin-bottom: 32px;
  color: var(--muted);
}

.series-card {
  display: grid;
  align-content: start;
}

.series-image {
  aspect-ratio: 4 / 3;
  margin: calc(clamp(24px, 3vw, 42px) * -1) calc(clamp(24px, 3vw, 42px) * -1) 24px;
  overflow: hidden;
  background: var(--paper-strong);
}

.series-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.series-card:hover .series-image img {
  transform: scale(1.035);
}

.is-collection-directory .section-heading {
  display: grid;
  max-width: none;
  justify-items: center;
  text-align: center;
}

.is-collection-directory .section-heading p:not(.eyebrow) {
  max-width: 680px;
}

.collection-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px) clamp(18px, 3vw, 42px);
}

.collection-directory-card {
  display: grid;
  gap: 16px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.collection-directory-image {
  display: grid;
  min-height: clamp(240px, 26vw, 430px);
  overflow: hidden;
  place-items: center;
  background: var(--paper);
}

.collection-directory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.collection-directory-card:hover .collection-directory-image img {
  transform: scale(1.035);
}

.collection-directory-copy {
  display: grid;
  gap: 7px;
  padding-inline: 2px;
}

.collection-directory-copy small,
.collection-directory-copy em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-directory-copy strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.collection-directory-copy em {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-grid {
  grid-template-columns: 1fr;
  gap: clamp(44px, 6vw, 86px);
  background: transparent;
  border: 0;
}

.collection-showcase {
  display: grid;
  gap: 14px;
}

.collection-hero-image {
  position: relative;
  min-height: clamp(380px, 58vw, 720px);
  overflow: hidden;
  background: var(--paper-strong);
}

.collection-arrow,
.collection-strip-arrow {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 62px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.collection-arrow {
  position: absolute;
  top: 50%;
  color: var(--white);
  transform: translateY(-50%);
}

.collection-arrow-prev {
  left: 18px;
}

.collection-arrow-next {
  right: 18px;
}

.collection-arrow::before,
.collection-strip-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.collection-arrow-prev::before,
.collection-strip-arrow.is-left::before {
  transform: translate(-34%, -50%) rotate(-45deg);
}

.collection-arrow-next::before,
.collection-strip-arrow.is-right::before {
  transform: translate(-66%, -50%) rotate(135deg);
}

.collection-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0) 62%);
  pointer-events: none;
}

.collection-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    filter 0.35s ease,
    transform 0.7s ease;
}

.collection-showcase:hover .collection-hero-image img {
  transform: scale(1.018);
}

.collection-hero-copy {
  position: absolute;
  z-index: 1;
  top: clamp(22px, 4vw, 46px);
  left: clamp(22px, 4vw, 46px);
  max-width: min(420px, calc(100% - 44px));
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.collection-hero-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.collection-hero-copy h3 {
  margin-bottom: 6px;
  font-size: clamp(28px, 4.6vw, 62px);
  line-height: 0.94;
}

.collection-hero-copy p {
  color: inherit;
  font-size: 13px;
}

.collection-hero-copy small {
  display: block;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.collection-finish-row {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.wood-finishes {
  display: flex;
  gap: 8px;
  align-items: start;
}

.wood-finish {
  width: clamp(130px, 13vw, 210px);
  padding: 0 0 8px;
  color: var(--muted);
  text-align: center;
  background: transparent;
  border: 0;
  border-top: 2px solid transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.wood-finish span {
  display: block;
  height: 50px;
  margin-bottom: 8px;
  border: 1px solid rgba(29, 27, 24, 0.08);
}

.finish-natural span {
  background: url("assets/finish-natural-teak.webp") center / cover;
}

.finish-weathered span,
.finish-smoked span {
  background: url("assets/finish-weathered-teak.webp") center / cover;
}

.wood-finish.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.wood-finish strong,
.wood-finish small {
  display: block;
}

.wood-finish strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.wood-finish small {
  margin-top: 3px;
  font-size: 11px;
}

.collection-shop-link {
  padding: 0 0 4px;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.collection-delivery {
  display: grid;
  gap: 2px;
  justify-items: end;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.collection-delivery p {
  margin: 0;
}

.collection-showcase[data-finish="natural"] .collection-hero-img,
.collection-showcase[data-finish="natural"] .collection-product-card img {
  filter: none;
}

.collection-showcase[data-finish="weathered"] .collection-hero-img,
.collection-showcase[data-finish="weathered"] .collection-product-card img {
  filter: grayscale(0.26) sepia(0.15) saturate(0.74) brightness(0.95) contrast(0.96);
}

.collection-product-carousel {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 8px;
  align-items: center;
}

.collection-product-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.collection-product-viewport::-webkit-scrollbar {
  display: none;
}

.collection-product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, calc((100% - 42px) / 4));
  gap: clamp(8px, 1vw, 14px);
}

.collection-product-card {
  display: grid;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  opacity: 0.72;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.collection-product-card div {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.collection-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

.collection-product-card:hover,
.collection-product-card.is-active {
  opacity: 1;
}

.collection-product-card.is-active {
  transform: translateY(-2px);
}

.collection-product-card.is-active div {
  border-color: var(--ink);
}

.collection-product-card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.collection-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.collection-item p,
.material-grid p,
.product-card p {
  color: var(--muted);
}

.filter-panel {
  display: grid;
  gap: 14px;
  min-width: min(720px, 100%);
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
}

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

.is-product-overview .section-heading {
  display: grid;
  justify-items: center;
  max-width: none;
  text-align: center;
}

.is-product-overview .section-heading .eyebrow,
.is-product-overview .filter-panel {
  display: none;
}

.is-product-overview .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.2vw, 78px);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 78px) clamp(18px, 3vw, 42px);
  align-items: start;
}

.product-category-card {
  display: grid;
  gap: 18px;
  padding: 0;
  color: var(--ink);
  text-align: center;
  background: transparent;
  border: 0;
}

.product-category-image {
  display: grid;
  min-height: clamp(180px, 20vw, 300px);
  place-items: end center;
  background: #fff;
}

.product-category-image img {
  width: 100%;
  max-height: clamp(170px, 18vw, 280px);
  object-fit: contain;
  transition: transform 0.28s ease;
}

.product-category-card:hover .product-category-image img {
  transform: translateY(-4px) scale(1.02);
}

.product-category-card strong {
  min-height: 44px;
  display: grid;
  place-items: start center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: uppercase;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(29, 27, 24, 0.1);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-strong);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.35s ease,
    transform 0.5s ease;
}

.product-card:hover .product-main-img {
  transform: scale(1.035);
}

.product-image-arrow,
.product-thumb-arrow {
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 56px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
  border: 0;
}

.product-image-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.product-image-arrow.is-left {
  left: 8px;
}

.product-image-arrow.is-right {
  right: 8px;
}

.product-image-arrow::before,
.product-thumb-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.product-image-arrow.is-left::before,
.product-thumb-arrow.is-left::before {
  transform: translate(-34%, -50%) rotate(-45deg);
}

.product-image-arrow.is-right::before,
.product-thumb-arrow.is-right::before {
  transform: translate(-66%, -50%) rotate(135deg);
}

.product-thumb-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  gap: 6px;
  align-items: center;
  padding: 10px 10px 0;
  background: var(--white);
}

.product-thumb-arrow {
  position: relative;
  width: 28px;
  height: 48px;
  background: transparent;
}

.product-thumb-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-thumb-viewport::-webkit-scrollbar {
  display: none;
}

.product-thumb-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, 92px);
  gap: 8px;
}

.product-thumb {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid transparent;
  opacity: 0.72;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

.product-thumb:hover,
.product-thumb.is-active {
  opacity: 1;
}

.product-thumb.is-active {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.product-card[data-finish="natural"] .product-main-img,
.product-card[data-finish="natural"] .product-thumb img {
  filter: none;
}

.product-card[data-finish="weathered"] .product-main-img,
.product-card[data-finish="weathered"] .product-thumb img {
  filter: grayscale(0.42) sepia(0.08) saturate(0.58) brightness(0.98) contrast(0.94);
}

.product-card-body {
  padding: 22px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 48px;
  margin-bottom: 10px;
}

.product-card p {
  min-height: 52px;
  margin-bottom: 18px;
}

.product-finish-panel {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
}

.product-finish {
  width: 50%;
}

.product-finish span {
  height: 38px;
}

.product-specs {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.product-specs div {
  display: grid;
  gap: 2px;
}

.product-specs dt {
  color: var(--ink);
  font-weight: 700;
}

.product-specs dd {
  margin: 0;
}

.product-inquiry-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.product-inquiry-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.product-inquiry-actions a + a {
  color: var(--forest);
  background: transparent;
}

.product-inquiry-actions a:hover {
  transform: translateY(-1px);
}

.floating-inquiry {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.floating-inquiry a {
  display: grid;
  min-width: 112px;
  min-height: 42px;
  place-items: center;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(36, 63, 50, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.3);
  box-shadow: 0 12px 34px rgba(29, 27, 24, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.floating-inquiry a + a {
  color: var(--forest);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(36, 63, 50, 0.22);
}

.delete-product {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(29, 27, 24, 0.72);
  border: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover .delete-product,
.delete-product:focus-visible {
  opacity: 1;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 56px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
}

.editor-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--steel);
}

.editor-intro {
  align-self: start;
  position: sticky;
  top: 96px;
}

.editor-intro p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.editor-band .eyebrow {
  color: #cda27f;
}

.manager-actions {
  margin-top: 28px;
}

.is-hidden {
  display: none !important;
}

.manager-actions input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.product-form {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 34px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.care-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(255, 253, 248, 0.22);
}

.care-board article {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.care-board span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
}

.care-board h3 {
  margin-bottom: 8px;
}

.care-board p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
}

.image-uploader {
  position: relative;
  display: grid;
  min-height: 240px;
  place-items: center;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px dashed rgba(29, 27, 24, 0.28);
}

.image-uploader input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.image-uploader label {
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
}

.image-uploader label span {
  font-weight: 700;
}

.image-uploader label small {
  color: var(--muted);
}

.image-uploader img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.image-uploader.has-image label {
  color: var(--white);
  background: rgba(29, 27, 24, 0.54);
}

.image-uploader.has-image label small {
  color: rgba(255, 253, 248, 0.76);
}

.image-uploader.has-image img {
  opacity: 1;
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 96px;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

.full-field {
  grid-column: 1 / -1;
}

.form-footer {
  justify-content: flex-end;
  padding-top: 4px;
}

.ghost-button {
  color: var(--ink);
}

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

.material-grid {
  grid-template-columns: repeat(4, 1fr);
}

.material-grid article {
  min-height: 280px;
}

.fabric-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 70px);
  padding: clamp(24px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
}

.material-detail[hidden] {
  display: none !important;
}

.fabric-showcase h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
}

.fabric-showcase p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.fabric-showcase img {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(29, 27, 24, 0.08);
}

.stone-showcase-media {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(220px, 0.58fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.stone-showcase-media img {
  height: 100%;
  object-fit: cover;
}

.stone-showcase-media img:last-child {
  object-fit: contain;
}

.rope-detail-pattern {
  min-height: 360px;
  border: 1px solid rgba(29, 27, 24, 0.08);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(126, 103, 72, 0.22) 0,
      rgba(126, 103, 72, 0.22) 12px,
      transparent 12px,
      transparent 28px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(65, 53, 38, 0.22) 0,
      rgba(65, 53, 38, 0.22) 10px,
      transparent 10px,
      transparent 30px
    ),
    #b9aa90;
}

.rope-detail-pattern span {
  display: block;
  width: 100%;
  height: 100%;
}

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

.manual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.manual-card {
  display: grid;
  min-height: 240px;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.manual-card:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.manual-card span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.manual-card strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
}

.manual-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

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

.faq-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 220px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}

.faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.swatch {
  width: 100%;
  height: 118px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
}

.swatch-stone {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    #b8afa4;
}

.swatch-rope {
  background:
    repeating-linear-gradient(45deg, #6f614c 0 8px, #897860 8px 16px),
    #766850;
}

.swatch-fabric {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 5px),
    #d8d0c2;
}

.swatch-teak {
  background:
    linear-gradient(90deg, rgba(39, 22, 12, 0.2), transparent 45%),
    #9b6b44;
}

.contact-section {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--forest);
}

.contact-section h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-whatsapp {
  color: var(--white);
}

.site-footer {
  color: var(--ink);
  background: #f4f4f4;
  border-top: 1px solid rgba(29, 27, 24, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1fr;
  gap: clamp(28px, 6vw, 92px);
  padding: 38px clamp(18px, 5vw, 72px) 40px;
  border-bottom: 1px solid rgba(29, 27, 24, 0.08);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column h2,
.newsletter-form h2 {
  margin: 0 0 8px;
  color: #a6a6a6;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.footer-column a:hover,
.social-links a:hover {
  color: var(--forest);
}

.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  color: #b0b0b0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(320px, 3fr) auto;
  column-gap: clamp(22px, 4vw, 40px);
  row-gap: 26px;
  align-items: end;
  padding: 38px clamp(18px, 5vw, 72px) 54px;
  border-bottom: 1px solid rgba(29, 27, 24, 0.08);
}

.newsletter-copy {
  align-self: start;
}

.newsletter-copy p {
  margin: 18px 0 0;
  font-size: 14px;
}

.newsletter-email {
  display: grid;
  gap: 8px;
}

.newsletter-email span {
  font-size: 14px;
  font-weight: 400;
}

.newsletter-email input {
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  border: 0;
}

.newsletter-form button {
  min-width: 128px;
  height: 48px;
  padding: 0 28px;
  color: var(--white);
  font-weight: 700;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
}

.privacy-check {
  grid-column: 2 / -1;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 1px solid var(--ink);
}

.privacy-check input:checked {
  background:
    linear-gradient(45deg, transparent 42%, var(--ink) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 46%, var(--ink) 46% 62%, transparent 62%);
}

.privacy-check span {
  font-weight: 400;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

.footer-description {
  justify-self: end;
  text-align: right;
}

.icp-link {
  justify-self: center;
  color: inherit;
  text-decoration: none;
}

.icp-link:hover,
.icp-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .quick-strip,
  .collection-grid,
  .material-grid,
  .fabric-showcase,
  .manual-grid,
  .faq-grid,
  .care-board,
  .editor-band,
  .footer-main,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 30px;
  }

  .newsletter-form {
    align-items: start;
  }

  .stone-showcase-media {
    grid-template-columns: 1fr;
  }

  .stone-showcase-media img {
    height: auto;
  }

  .privacy-check {
    grid-column: 1;
  }

  .split-heading {
    display: grid;
    align-items: start;
  }

  .filters {
    justify-content: flex-start;
  }

  .product-overview-grid,
  .product-grid,
  .collection-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-product-strip {
    grid-auto-columns: minmax(220px, 72vw);
    scroll-snap-type: x proximity;
  }

  .collection-product-card {
    scroll-snap-align: start;
  }

  .fabric-showcase {
    align-items: start;
  }

  .editor-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    padding-inline: 14px;
  }

  .mobile-nav {
    inset-top: 64px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-copy small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 16px 28px;
  }

  .hero-copy {
    transform: none;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .quick-strip div,
  .collection-item,
  .material-grid article,
  .material-card,
  .fabric-showcase,
  .manual-card,
  .empty-state {
    padding: 24px 18px;
  }

  .product-overview-grid,
  .product-grid,
  .collection-directory-grid {
    grid-template-columns: 1fr;
  }

  .product-category-image {
    min-height: 220px;
  }

  .collection-directory-image {
    min-height: 260px;
  }

  .collection-grid {
    gap: 46px;
  }

  .collection-hero-image {
    min-height: 430px;
  }

  .collection-hero-copy {
    top: 18px;
    left: 18px;
  }

  .collection-finish-row {
    display: grid;
    gap: 14px;
  }

  .collection-delivery {
    justify-items: start;
    text-align: left;
  }

  .collection-product-carousel {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 4px;
  }

  .collection-arrow,
  .collection-strip-arrow {
    width: 30px;
  }

  .wood-finishes {
    width: 100%;
  }

  .wood-finish {
    width: 50%;
  }

  .wood-finish span {
    height: 44px;
  }

  .section,
  .editor-band,
  .contact-section {
    padding-inline: 16px;
  }

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

  .product-form {
    padding: 16px;
  }

  .contact-section,
  .site-footer {
    display: grid;
  }

  .footer-main,
  .newsletter-form,
  .footer-bottom {
    padding-inline: 16px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-description,
  .icp-link {
    justify-self: center;
    text-align: center;
  }

  .social-links {
    gap: 14px;
  }
}
