.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr .74fr .9fr;
  gap: clamp(12px, 2vw, 26px);
  align-items: end;
  margin-top: 70px;
}

.showcase-card { position: relative; overflow: hidden; background: #161a1c; }
.showcase-card:nth-child(2) { margin-bottom: 90px; }
.showcase-card img { display: block; width: 100%; aspect-ratio: .78; object-fit: cover; transition: transform .8s ease; }
.showcase-card:hover img { transform: scale(1.04); }
.showcase-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 50px 18px 17px;
  background: linear-gradient(transparent, rgba(3,5,6,.9));
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.showcase-card figcaption b { font-size: 17px; letter-spacing: -.02em; text-transform: none; }
.showcase-number { color: var(--acid); }

.path-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #121516;
}

.path-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 900px;
}

.path-copy {
  padding: clamp(80px, 9vw, 150px) clamp(24px, 5vw, 80px);
  border-right: 1px solid rgba(15,18,18,.16);
}

.path-copy .chapter-label { color: #617400; }
.path-copy h2 { margin: 0 0 30px; font: 500 clamp(48px, 6vw, 96px)/.92 Georgia, serif; letter-spacing: -.06em; }
.path-copy p { max-width: 520px; color: #5e6260; font-size: 17px; line-height: 1.65; }
.path-copy .button { margin-top: 24px; }

.path-list { display: grid; grid-template-rows: repeat(4, 1fr); }
.path-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 35px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(15,18,18,.16);
  overflow: hidden;
}

.path-item:last-child { border-bottom: 0; }
.path-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(220,235,84,.55));
  transform: translateX(-102%);
  transition: transform .45s ease;
}
.path-item:hover::after { transform: translateX(0); }
.path-item > * { position: relative; z-index: 1; }
.path-index { font: 500 38px/1 Georgia, serif; color: #81847f; }
.path-item h3 { margin: 0 0 7px; font-size: clamp(24px, 2.2vw, 36px); letter-spacing: -.045em; }
.path-item p { margin: 0; color: #70736f; font-size: 13px; }
.path-arrow { font-size: 30px; }

.community {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #121719;
}

.community-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 33%; opacity: .62; }
.community::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,8,.18), rgba(5,7,8,.2) 30%, rgba(5,7,8,.95) 93%),
    linear-gradient(90deg, rgba(5,7,8,.74), transparent 70%);
}

.community-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 92px) 80px;
}

.community-content h2 {
  max-width: 1040px;
  margin: 0 0 34px;
  font-size: clamp(56px, 8.5vw, 150px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.community-content h2 span { color: var(--acid); font-family: Georgia, serif; font-weight: 500; text-transform: none; }

.community-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1050px;
  margin-top: 65px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.community-fact { min-height: 150px; padding: 25px 28px 20px 0; border-right: 1px solid rgba(255,255,255,.2); }
.community-fact:not(:first-child) { padding-left: 28px; }
.community-fact b { display: block; margin-bottom: 11px; font-size: 20px; }
.community-fact p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.55; }

.shelf {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 5vw, 82px);
}

.shelf-head { display: grid; grid-template-columns: 1fr .6fr; align-items: end; gap: 40px; }
.shelf-head p { margin: 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.6; }

.product-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  background: #101416;
}

.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .46; transition: opacity .35s ease, transform .7s ease; }
.product-card:hover img { opacity: .7; transform: scale(1.04); }
.product-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,8,.2), rgba(5,7,8,.94)); }
.product-card > * { position: relative; z-index: 2; }
.product-card small { font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.product-card h3 { margin: 0 0 10px; font-size: clamp(34px, 3.4vw, 58px); line-height: .92; letter-spacing: -.055em; }
.product-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 800px;
  color: #141616;
  background: var(--acid);
}

.location-image { position: relative; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); mix-blend-mode: multiply; opacity: .72; }
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 9vw, 150px); }
.location-copy .chapter-label { color: #536000; }
.location-copy h2 { margin: 0 0 26px; font-size: clamp(62px, 8vw, 130px); line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.location-copy p { max-width: 580px; margin: 0 0 30px; font-size: 17px; line-height: 1.6; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 42px clamp(24px, 5vw, 82px);
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

.feedback {
  position: relative;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px clamp(22px, 5vw, 70px);
  color: white;
  background: #24282a;
  border-top: 1px solid rgba(255,255,255,.18);
}

.feedback strong { display: block; margin-bottom: 6px; font-size: 17px; }
.feedback p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.feedback-actions { display: flex; gap: 8px; }
.feedback-choice { cursor: pointer; }
.feedback-choice.selected { color: #111; background: var(--acid); border-color: var(--acid); }

