:root {
  --ink: #27322d;
  --cream: #f5f3ee;
  --lime: #52685d;
  --orange: #a9794d;
  --olive: #879287;
  --line: #d8d4ca;
  --muted: #68736d;
}

body { background: var(--cream); }

.header {
  background: rgba(245, 243, 238, .97);
}

.brand {
  font-family: Manrope, Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.045em;
}

.brand > span:last-child > span { color: var(--orange); }

.brand-mark {
  width: 45px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  margin-right: 9px;
}

.brand-mark img {
  width: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.button {
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
}

.button:hover {
  background: var(--orange);
}

.hero h1,
.section h2,
.cta h2,
.modal h2,
.price-intro h2,
.about-copy h2 {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.hero h1 em { color: var(--orange); }
.hero-photo { object-position: 54% center; }
.eyebrow i { background: var(--orange); }
.hero-tag { background: #d9ded4; }
.ticker { background: #d9ded4; color: var(--ink); }
.ticker i { color: var(--orange); }

.catalog { background: #f5f3ee; }

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

.product-card,
.product-card.dark,
.product-card.olive {
  min-height: 510px;
  padding: 0 22px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow .3s ease;
}

.product-card.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .3s ease;
}

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

.product-card:hover {
  box-shadow: 0 18px 45px rgba(39, 50, 45, .12);
}

.product-media {
  height: 275px;
  margin: 0 -22px 22px;
  position: relative;
  overflow: hidden;
  background: #d9ddd8;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 33, 29, .42));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease;
}

.product-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #202923;
}

.product-card:hover .product-media img { transform: scale(1.04); }

.product-slider .product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease, transform 1.2s ease;
}

.product-slider .product-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.product-card:hover .product-slider .product-slide.is-active {
  transform: scale(1.025);
}

.slider-controls {
  position: absolute;
  z-index: 4;
  right: 13px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-arrow {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(39, 50, 45, .78);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 14px;
  background: rgba(39, 50, 45, .72);
}

.slider-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .48);
  cursor: pointer;
  transition: background-color .2s cubic-bezier(.23, 1, .32, 1), transform .2s cubic-bezier(.23, 1, .32, 1);
}

.slider-dots button.is-active {
  width: 18px;
  border-radius: 4px;
  background: #fff;
}

.product-media > span {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-num {
  top: 299px;
  right: 21px;
  color: var(--muted) !important;
}

.product-card h3 {
  margin: 0 0 10px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.product-card p,
.product-card.dark p {
  min-height: 62px;
  color: var(--muted);
  font-size: 14px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.product-bottom .price { margin: 0; }

.product-bottom .card-link {
  position: static;
  padding-bottom: 3px;
  color: var(--ink);
}

.fabrics { background: #303b35; }
.fabric:hover,
.fabric.active { background: #d9ded4; }
.fabric-list { border-top: 1px solid #56635c; }
.fabric-item { border-bottom: 1px solid #56635c; }
.fabric-item .fabric { border-bottom: 0; }
.fabric-item.is-open .fabric { background: #d9ded4; color: var(--ink); padding-left: 22px; }
.fabric-item.is-open .fabric small { color: #5e6a63; }
.fabric-item .fabric i { transition: transform .3s ease, background .3s ease; }
.fabric-item.is-open .fabric i { transform: rotate(45deg); background: rgba(39, 50, 45, .08); }
.fabric-detail { max-height: 0; overflow: hidden; opacity: 0; background: #d9ded4; color: var(--ink); transition: opacity .2s cubic-bezier(.23, 1, .32, 1); }
.fabric-item.is-open .fabric-detail { max-height: 420px; opacity: 1; }
.fabric-detail-inner { display: grid; grid-template-columns: 1.35fr 1fr .9fr; gap: 45px; padding: 5px 28px 32px 100px; }
.fabric-detail strong { display: block; margin-bottom: 10px; font-size: 18px; }
.fabric-detail p { margin: 0; color: #5d6862; font-size: 13px; line-height: 1.7; }
.fabric-detail ul { margin: 0; padding: 0; list-style: none; }
.fabric-detail li { position: relative; padding: 5px 0 5px 18px; font-size: 12px; }
.fabric-detail li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.fabric-choice { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.fabric-choice > span { color: #68736d; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.fabric-choice > b { min-height: 38px; font-size: 12px; line-height: 1.45; }
.fabric-choice .button { margin-top: 5px; padding: 10px 15px; }
.price-section { background: #e4e4dc; }
.cta { background: #94704f; }
.factory-label { background: #94704f; }
.round-button { background: #d9ded4; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .brand { font-size: 17px; }
  .brand-mark { width: 39px; height: 44px; }
  .brand-mark img { width: 51px; }
  .hero h1 { font-size: 43px; }
  .product-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
  .product-card { min-height: 500px; }
  .product-media { height: 275px; }
  .slider-arrow { width: 36px; height: 36px; }
  .fabric-detail-inner { grid-template-columns: 1fr; gap: 18px; padding: 2px 18px 26px; }
  .fabric-item.is-open .fabric-detail { max-height: 650px; }
  .fabric-choice > b { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card.reveal-pending { opacity: 1; transform: none; transition: none; }
  .product-media img { transition: none; }
}
