.products-page { background: var(--white); }
.products-page .site-header { color: var(--ink); }
.products-main { overflow: hidden; }

.products-hero { position: relative; display: flex; min-height: 600px; align-items: end; padding: calc(var(--header-height) + 80px) 0 90px; overflow: hidden; background: var(--greige); }
.products-hero::before { content: "PRODUCT"; position: absolute; right: -.035em; bottom: -.2em; color: rgba(41,41,35,.055); font-size: clamp(8rem, 21vw, 22rem); font-weight: 800; line-height: 1; letter-spacing: -.08em; white-space: nowrap; }
.products-hero::after { content: ""; position: absolute; right: 0; inset-block: 0; width: 28%; background: var(--navy); }
.products-hero-inner { position: relative; z-index: 1; width: 100%; }
.products-breadcrumb { margin: 0 0 58px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.products-hero h1 { max-width: 70%; margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 600; line-height: .98; letter-spacing: -.065em; }
.products-hero h1 span { display: block; margin-top: 28px; font-size: .82rem; font-weight: 500; letter-spacing: .12em; }

.products-intro { padding: clamp(100px, 13vw, 180px) 0; }
.products-intro-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(60px, 10vw, 150px); }
.products-intro h2 { margin: 0 0 44px; font-size: clamp(2.5rem, 5.3vw, 5.5rem); font-weight: 600; line-height: 1.24; letter-spacing: -.055em; }
.products-intro-grid > div > p { max-width: 720px; margin: 0 0 20px; color: var(--muted); }
.products-intro-grid .products-lead { color: var(--ink); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 500; }

.product-showcase { padding: clamp(100px, 12vw, 170px) 0; background: var(--mist); }
.products-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); align-items: start; margin-bottom: clamp(70px, 9vw, 110px); }
.products-heading h2 { margin: 0; font-size: clamp(2.35rem, 4.5vw, 4.4rem); font-weight: 500; line-height: 1.2; letter-spacing: -.05em; }
.products-heading > p:last-child { max-width: 600px; margin: 50px 0 0; color: var(--muted); }
.product-list { display: grid; gap: clamp(90px, 13vw, 170px); }
.product-card { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(45px, 8vw, 110px); align-items: center; }
.product-card-reverse .product-image { order: 2; }
.product-image { position: relative; display: block; aspect-ratio: 1.16; overflow: hidden; background: var(--greige); }
.product-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: var(--image-wash); mix-blend-mode: multiply; transition: opacity .45s ease; }
.product-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: var(--image-tone); transition: transform .55s ease, filter .45s ease; }
.product-image:hover img { transform: scale(1.025); filter: var(--image-tone-hover); }
.product-image:hover::after { opacity: 0; }
.product-meta { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--blue); font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.product-copy h3 { margin: 40px 0 24px; font-size: clamp(2rem, 4vw, 4rem); font-weight: 600; line-height: 1.18; letter-spacing: -.05em; }
.product-copy > p { margin: 0 0 44px; color: var(--muted); }
.product-story-link { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 20px; color: var(--white); background: var(--navy); font-size: .86rem; font-weight: 700; }
.product-story-link i { font-size: 1.1rem; font-style: normal; transition: transform .25s; }
.product-story-link:hover i { transform: translate(5px,-5px); }
.product-link { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .86rem; font-weight: 700; }
.product-link small { display: block; margin-top: 4px; color: var(--muted); font-size: .65rem; font-weight: 400; letter-spacing: .04em; }
.product-link i { font-size: 1.2rem; font-style: normal; transition: transform .25s; }
.product-link:hover i { transform: translate(5px, -5px); }

.products-note { padding: clamp(110px, 14vw, 190px) 0; color: var(--greige); background: var(--navy); }
.products-note-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: end; }
.products-note h2 { margin: 0; color: var(--white); font-size: clamp(2.7rem, 5.4vw, 5.4rem); font-weight: 500; line-height: 1.25; letter-spacing: -.055em; }
.products-note-inner > div:last-child > p { margin: 0 0 42px; color: rgba(214,210,196,.68); }
.products-note .text-link { color: var(--white); }

@media (max-width: 900px) {
  .products-hero { min-height: 500px; }
  .products-hero::after { width: 14px; }
  .products-hero h1 { max-width: 100%; }
  .products-intro-grid, .products-heading, .products-note-inner { grid-template-columns: 1fr; gap: 28px; }
  .products-heading > p:last-child { margin-top: 0; }
  .product-card { grid-template-columns: 1fr; gap: 38px; }
  .product-card-reverse .product-image { order: 0; }
}

@media (max-width: 560px) {
  .products-hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .product-image { aspect-ratio: 1.05; }
  .product-copy h3 { margin-top: 30px; }
}

@media (hover: none) {
  .product-image img { filter: var(--image-tone); }
  .product-image::after { opacity: .3; }
}
