:root {
  --st-available: #2f9a3c;
  --st-available-bg: rgba(61, 181, 74, 0.12);
  --st-reserved: #c98a16;
  --st-reserved-bg: rgba(201, 138, 22, 0.14);
  --st-sold: #b3402f;
  --st-sold-bg: rgba(179, 64, 47, 0.12);
}

.pdp {
  background: var(--bone);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  font-size: 0.84rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.crumbs a:hover {
  color: var(--brand-d);
}
.crumbs svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  opacity: 0.6;
}
.crumbs span[aria-current] {
  color: var(--ink);
  font-weight: 600;
}

.statuspill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--st-available-bg);
  color: var(--st-available);
}
.statuspill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.statuspill--selling {
  background: var(--st-available-bg);
  color: var(--st-available);
}
.statuspill--reserved {
  background: var(--st-reserved-bg);
  color: var(--st-reserved);
}
.statuspill--sold {
  background: var(--st-sold-bg);
  color: var(--st-sold);
}

.phero {
  padding: 30px 0 56px;
}
.phero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 1080px) {
  .phero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.phero__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 16px;
}
.phero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.phero__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.phero__byline svg {
  width: 18px;
  height: 18px;
  color: var(--brand-d);
  stroke-width: 2;
}
.phero__bit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.phero__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-mute);
}
@media (max-width: 560px) {
  .phero__sep {
    display: none;
  }
}
.phero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.typetag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--line);
}
.typetag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  color: var(--brand-d);
}

.statband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.statband__item {
  padding: 16px 20px;
  border-left: 1px solid var(--line-2);
}
.statband__item:first-child {
  border-left: 0;
}
.statband__label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.statband__value {
  margin: 7px 0 0;
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest);
}
.statband__sub {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mute);
}
@media (max-width: 560px) {
  .statband {
    grid-template-columns: 1fr;
  }
  .statband__item {
    border-left: 0;
    border-top: 1px solid var(--line-2);
  }
  .statband__item:first-child {
    border-top: 0;
  }
}

.gallery__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(15, 42, 30, 0.5);
  background: var(--sand);
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gallery__stage:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.gallery__stage:hover .gallery__expand {
  background: var(--brand);
  color: #06180e;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.gallery__stage:hover .gallery__img {
  transform: scale(1.03);
}
.gallery__expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 26, 43, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.gallery__expand svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
.gallery__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(12, 26, 43, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 560px) {
  .gallery__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gthumb {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
  padding: 0;
  aspect-ratio: 1/1;
  transition: border-color 0.25s, transform 0.25s;
}
.gthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gthumb span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4px 6px;
  font-size: 0.64rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(12, 26, 43, 0.85), transparent);
  text-align: left;
}
.gthumb:hover img {
  transform: scale(1.06);
}
.gthumb.is-active {
  border-color: var(--brand);
}

.pdp-section {
  padding: 64px 0;
}
@media (max-width: 820px) {
  .pdp-section {
    padding: 48px 0;
  }
}
.pdp-section--alt {
  background: var(--cream);
}
.pdp-section--forest {
  background: var(--forest);
  background-image: radial-gradient(circle at 20% 0%, var(--forest-3), var(--forest) 60%);
}

.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
}
@media (max-width: 1080px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.layout__main {
  min-width: 0;
}

.block + .block {
  margin-top: 48px;
}
.block__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 10px;
}
.block__lead {
  margin-top: 8px;
  color: var(--ink-soft);
}
.block__sub {
  margin-top: 16px;
  font-weight: 600;
  color: var(--ink);
}
.block__subhead {
  margin-top: 26px;
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ink);
}
.block p {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 62ch;
}
.block__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ticklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (max-width: 560px) {
  .ticklist {
    grid-template-columns: 1fr;
  }
}
.ticklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.ticklist svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--st-available-bg);
  color: var(--brand-d);
  stroke-width: 2.4;
}

.infotable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.infotable th, .infotable td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.96rem;
}
.infotable tr:last-child th, .infotable tr:last-child td {
  border-bottom: 0;
}
.infotable th {
  width: 42%;
  color: var(--ink-mute);
  font-weight: 600;
  background: rgba(21, 32, 26, 0.02);
}
.infotable td {
  color: var(--ink);
  font-weight: 600;
}

.featgrid {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 820px) {
  .featgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .featgrid {
    grid-template-columns: 1fr;
  }
}
.featgrid__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.featgrid__ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--st-available-bg);
  color: var(--brand-d);
}
.featgrid__ic svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}
.featgrid__label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.3;
}

.specgrid {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 820px) {
  .specgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .specgrid {
    grid-template-columns: 1fr;
  }
}
.specgrid__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 15px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.specgrid__ic {
  grid-row: 1/3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--st-available-bg);
  color: var(--brand-d);
}
.specgrid__ic svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.specgrid__label {
  grid-column: 2;
  align-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.specgrid__value {
  grid-column: 2;
  align-self: start;
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}
.specgrid__sub {
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 0.84rem;
}
.specgrid__item--key {
  background: var(--st-available-bg);
  border-color: color-mix(in srgb, var(--brand-d) 26%, transparent);
}
.specgrid__item--key .specgrid__ic {
  background: var(--brand);
  color: #06180e;
}
.specgrid__item--key .specgrid__value {
  color: var(--forest);
}

.viewtoggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
}
.viewtoggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s;
}
.viewtoggle__btn svg {
  width: 16px;
  height: 16px;
}
.viewtoggle__btn.is-active {
  background: var(--forest);
  color: var(--bone);
}

.legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 20px 0 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend__chip {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.legend__chip--available {
  background: var(--st-available);
}
.legend__chip--reserved {
  background: var(--st-reserved);
}
.legend__chip--sold {
  background: var(--st-sold);
}

.stands-view.is-hidden {
  display: none;
}

.standstable {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.standstable thead th {
  text-align: left;
  padding: 13px 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(21, 32, 26, 0.03);
  border-bottom: 1px solid var(--line);
}
.standstable tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 600;
  vertical-align: middle;
}
.standstable tbody tr:last-child td {
  border-bottom: 0;
}
.standstable tbody tr {
  transition: background 0.2s;
}
.standstable tbody tr:hover {
  background: rgba(61, 181, 74, 0.04);
}
.standstable__action {
  text-align: right;
}
@media (max-width: 560px) {
  .standstable thead {
    display: none;
  }
  .standstable tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }
  .standstable tbody td {
    border: 0;
    padding: 4px 0;
  }
  .standstable tbody td::before {
    content: attr(data-th);
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
  }
  .standstable__action {
    grid-column: 1/-1;
    text-align: left;
  }
}

.sbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}
.sbadge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.sbadge--available {
  background: var(--st-available-bg);
  color: var(--st-available);
}
.sbadge--reserved {
  background: var(--st-reserved-bg);
  color: var(--st-reserved);
}
.sbadge--sold {
  background: var(--st-sold-bg);
  color: var(--st-sold);
}

.rowbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.rowbtn svg {
  width: 15px;
  height: 15px;
}
.rowbtn--reserve {
  background: var(--brand);
  border-color: var(--brand);
  color: #06180e;
}
.rowbtn--reserve:hover {
  background: var(--lime);
  border-color: var(--lime);
}
.rowbtn:hover {
  border-color: var(--ink);
}

.standgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
@media (max-width: 560px) {
  .standgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.standcell {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--forest);
  box-shadow: 0 12px 26px -20px rgba(15, 42, 30, 0.6);
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.standcell__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.standcell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7, 18, 12, 0.88) 2%, rgba(7, 18, 12, 0.45) 30%, rgba(7, 18, 12, 0) 58%);
}
.standcell .sbadge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px -5px rgba(8, 18, 12, 0.55);
}
.standcell__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px;
  text-align: left;
}
.standcell__no {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #fff;
}
.standcell__meta {
  font-size: 0.86rem;
  font-weight: 500;
  color: #e7eee8;
}
.standcell__price {
  color: #fff;
  font-weight: 700;
}
.standcell__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.standcell__cta svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}
.standcell:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 46px -26px rgba(15, 42, 30, 0.7);
}
.standcell:hover .standcell__img {
  transform: scale(1.07);
}
.standcell:hover .standcell__cta {
  opacity: 1;
  transform: translateY(0);
}
.standcell:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.standcell--sold {
  cursor: not-allowed;
}
.standcell--sold .standcell__img {
  filter: grayscale(0.6) brightness(0.82);
}
.standcell--sold:hover {
  transform: none;
  box-shadow: 0 12px 26px -20px rgba(15, 42, 30, 0.6);
}
.standcell--sold:hover .standcell__img {
  transform: none;
}
.standcell--sold:hover .standcell__cta {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 1080px) {
  .layout__aside {
    order: -1;
  }
}

.sidecard {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 24px 48px -32px rgba(15, 42, 30, 0.4);
}
@media (max-width: 1080px) {
  .sidecard {
    position: static;
  }
}
.sidecard__price {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--forest);
  display: block;
}
.sidecard__note {
  margin: 6px 0 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.sidecard .btn {
  margin-bottom: 10px;
}
.sidecard__facts {
  list-style: none;
  padding: 16px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  gap: 12px;
}
.sidecard__facts li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.sidecard__facts li span {
  color: var(--ink-mute);
}
.sidecard__facts li strong {
  color: var(--ink);
}
.sidecard__facts li svg {
  width: 18px;
  height: 18px;
  color: var(--brand-d);
}

.workflow {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 680px;
  display: grid;
  gap: 2px;
}

.wfstep {
  --wf-accent: var(--brand);
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: start;
  gap: 4px 22px;
  padding: 14px 0 24px;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--wf-delay, 0ms);
}
.wfstep:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 62px;
  bottom: -14px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--line-light), rgba(246, 242, 233, 0.05));
}
.wfstep__node {
  grid-row: 1/3;
  align-self: start;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--wf-accent) 55%, transparent);
  background: color-mix(in srgb, var(--wf-accent) 16%, var(--forest));
  color: var(--wf-accent);
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.wfstep__title {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--on-dark);
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.wfstep__desc {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 44ch;
}
.wfstep__tag {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin-top: 8px;
  justify-self: end;
  white-space: nowrap;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--wf-accent);
  background: color-mix(in srgb, var(--wf-accent) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--wf-accent) 32%, transparent);
}
.wfstep--payoff .wfstep__node {
  background: var(--brand);
  border-color: var(--brand);
  color: #06180e;
  box-shadow: 0 0 0 6px rgba(61, 181, 74, 0.14);
}
.wfstep--payoff .wfstep__title {
  color: #fff;
}
.wfstep--payoff .wfstep__tag {
  color: #06180e;
  background: var(--brand);
  border-color: var(--brand);
}
@media (max-width: 560px) {
  .wfstep {
    grid-template-columns: 44px 1fr;
    gap: 2px 16px;
  }
  .wfstep:not(:last-child)::after {
    left: 22px;
  }
  .wfstep__tag {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    margin-top: 10px;
  }
}

.js .wfstep {
  opacity: 0;
  transform: translateY(16px);
}

.wfstep.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .wfstep {
    opacity: 1;
    transform: none;
  }
  .wfstep {
    transition: none;
  }
}
.highlights {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, minmax(170px, auto));
  grid-template-areas: "hero hero serv serv" "hero hero flex grow" "capi capi agro agro";
}
@media (max-width: 820px) {
  .highlights {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas: "hero hero" "hero hero" "serv serv" "flex grow" "capi capi" "agro agro";
  }
}
@media (max-width: 560px) {
  .highlights {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "serv" "flex" "grow" "capi" "agro";
  }
}

.hl--hero {
  grid-area: hero;
}

.hl--serv {
  grid-area: serv;
}

.hl--flex {
  grid-area: flex;
}

.hl--grow {
  grid-area: grow;
}

.hl--capi {
  grid-area: capi;
}

.hl--agro {
  grid-area: agro;
}

.hl {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.hl__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--st-available-bg);
  color: var(--brand-d);
}
.hl__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.hl__body {
  margin-top: auto;
  padding-top: 22px;
}
.hl__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hl__desc {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hl:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -28px rgba(15, 42, 30, 0.45);
  border-color: rgba(21, 32, 26, 0.2);
}

.hl--hero {
  padding: 28px;
}
.hl--hero .hl__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}
.hl--hero .hl__num {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.85;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.hl--hero .hl__unit {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--brand-d);
}
.hl--hero .hl__title {
  margin-top: 14px;
  font-size: 1.22rem;
}

.hl__chips {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hl__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}
.hl__chips li svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  color: var(--brand-d);
}

.hl--agro {
  background: radial-gradient(125% 125% at 0% 0%, #1d4d31 0%, #0f2c1d 62%);
  border-color: transparent;
  color: var(--bone);
}
.hl--agro .hl__icon {
  background: rgba(61, 181, 74, 0.22);
  color: #8fe39a;
}
.hl--agro .hl__title {
  color: var(--bone);
}
.hl--agro .hl__desc {
  color: #cfe0d2;
}
.hl--agro:hover {
  border-color: transparent;
  box-shadow: 0 26px 50px -28px rgba(8, 24, 14, 0.75);
}
.hl--agro .hl__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.12);
  border: 1px solid rgba(246, 242, 233, 0.24);
  color: var(--bone);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .hl {
    min-height: 0;
  }
  .hl__body {
    padding-top: 18px;
  }
  .hl--hero .hl__num {
    font-size: 3.6rem;
  }
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 0;
  max-width: 640px;
}

.tl {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}
.tl:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 44px;
  bottom: -14px;
  width: 2px;
  background: var(--line);
}
.tl__dot {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  color: transparent;
  z-index: 1;
}
.tl__dot svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}
.tl__label {
  color: var(--ink-soft);
  font-weight: 500;
}
.tl.is-done .tl__dot {
  background: var(--brand);
  border-color: var(--brand);
  color: #06180e;
}
.tl.is-done .tl__label {
  color: var(--ink);
  font-weight: 600;
}
.tl.is-done::after {
  background: var(--brand);
}

.combo {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 52px;
}
@media (max-width: 1080px) {
  .combo {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 40px;
  }
}

.progress-rail {
  background: rgba(246, 242, 233, 0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: sticky;
  top: 96px;
}
@media (max-width: 1080px) {
  .progress-rail {
    position: static;
  }
}
@media (max-width: 560px) {
  .progress-rail {
    padding: 22px;
  }
}
.progress-rail__head {
  margin-bottom: 6px;
}
.progress-rail__status {
  margin-top: 12px;
  color: var(--on-dark-soft);
  font-size: 0.9rem;
}
.progress-rail__status strong {
  color: var(--bone);
  font-weight: 700;
}
.progress-rail .timeline {
  max-width: none;
  margin: 0;
}

.meter {
  margin-top: 14px;
  height: 7px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.1);
  overflow: hidden;
}
.meter__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--lime));
}

.timeline--ondark .tl__dot {
  background: rgba(246, 242, 233, 0.06);
  border-color: var(--line-light);
}
.timeline--ondark .tl__label {
  color: var(--on-dark-soft);
}
.timeline--ondark .tl:not(:last-child)::after {
  background: var(--line-light);
}
.timeline--ondark .tl.is-done .tl__dot {
  background: var(--brand);
  border-color: var(--brand);
  color: #06180e;
}
.timeline--ondark .tl.is-done .tl__label {
  color: var(--on-dark);
  font-weight: 600;
}
.timeline--ondark .tl.is-done::after {
  background: var(--brand);
}
.timeline--ondark .tl.is-active .tl__dot {
  background: color-mix(in srgb, var(--lime) 18%, var(--forest));
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 0 5px rgba(155, 212, 92, 0.12);
}
.timeline--ondark .tl.is-active .tl__label {
  color: var(--on-dark);
  font-weight: 600;
}
.timeline--ondark .tl__tag {
  margin-left: auto;
  align-self: center;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(155, 212, 92, 0.12);
  border: 1px solid rgba(155, 212, 92, 0.32);
}

.workflow-col__head {
  margin-bottom: 4px;
}
.workflow-col__status {
  margin-top: 12px;
  color: var(--on-dark-soft);
  font-size: 0.9rem;
}
.workflow-col .workflow {
  margin: 22px 0 0;
  max-width: none;
}

.dossier {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 30px 60px -48px rgba(15, 42, 30, 0.5);
}
@media (max-width: 1080px) {
  .dossier {
    grid-template-columns: 1fr;
  }
}
.dossier__id {
  display: flex;
  flex-direction: column;
  padding: 38px;
  color: var(--bone);
  background: var(--forest);
  background-image: radial-gradient(circle at 16% 0%, var(--forest-3), var(--forest) 64%);
}
@media (max-width: 560px) {
  .dossier__id {
    padding: 26px;
  }
}
.dossier__logo {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--lime);
  background: rgba(155, 212, 92, 0.13);
  border: 1px solid rgba(155, 212, 92, 0.3);
}
.dossier__logo svg {
  width: 29px;
  height: 29px;
}
.dossier__bio {
  margin-top: 22px;
  color: rgba(246, 242, 233, 0.86);
  line-height: 1.62;
  max-width: 36ch;
}
.dossier__stats {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 560px) {
  .dossier__stats {
    gap: 14px;
  }
}
.dossier__stat strong {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--lime);
  display: block;
}
.dossier__stat span {
  display: block;
  margin-top: 7px;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(246, 242, 233, 0.78);
}
.dossier__cta {
  margin-top: 28px;
  align-self: flex-start;
}
@media (max-width: 560px) {
  .dossier__cta {
    width: 100%;
  }
}
.dossier__docs {
  padding: 38px;
}
@media (max-width: 560px) {
  .dossier__docs {
    padding: 26px;
  }
}
.dossier__docshead {
  margin-bottom: 6px;
}
.dossier__docstitle {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.dossier__docssub {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.docindex {
  margin-top: 14px;
  border-top: 1px solid var(--line-2);
}

.docrow {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-2);
  transition: padding 0.25s var(--ease), color 0.25s;
}
.docrow__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--forest);
  background: rgba(61, 181, 74, 0.12);
  transition: background 0.25s, color 0.25s;
}
.docrow__icon svg {
  width: 19px;
  height: 19px;
}
.docrow__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.docrow__name {
  font-weight: 600;
  color: var(--ink);
}
.docrow__meta {
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--ink-mute);
}
.docrow__dl {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--ink-mute);
  transition: transform 0.25s, color 0.25s;
}
.docrow:hover {
  padding-left: 12px;
}
.docrow:hover .docrow__icon {
  background: var(--forest);
  color: var(--lime);
}
.docrow:hover .docrow__name {
  color: var(--brand-d);
}
.docrow:hover .docrow__dl {
  color: var(--brand-d);
  transform: translateY(2px);
}
.docrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 12, 0.55);
  backdrop-filter: blur(3px);
  animation: pdpFade 0.25s var(--ease);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  animation: pdpPop 0.3s var(--ease);
}
@media (max-width: 560px) {
  .modal__panel {
    padding: 22px;
  }
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 4px 14px -6px rgba(8, 18, 12, 0.45);
  transition: background 0.2s, color 0.2s;
}
.modal__close svg {
  width: 18px;
  height: 18px;
}
.modal__close:hover {
  background: var(--close-red, #e5484d);
  color: #fff;
  border-color: transparent;
}
.modal__view.is-hidden {
  display: none;
}
.modal__title {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 14px;
}
.modal__lead {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.modal__actions {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.modal__actions--split {
  grid-template-columns: auto 1fr;
}
.modal__actions--split .btn:last-child {
  justify-self: stretch;
}
.modal__tick {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--st-available-bg);
  color: var(--brand-d);
}
.modal__tick svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

@keyframes pdpFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pdpPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#standModal .modal__panel {
  max-width: 520px;
}

.standhero {
  position: relative;
  margin: -30px -30px 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius) var(--radius) 0 0;
}
@media (max-width: 560px) {
  .standhero {
    margin: -22px -22px 0;
    aspect-ratio: 3/2;
  }
}
.standhero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.standhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 12, 0.9) 4%, rgba(7, 18, 12, 0.4) 34%, rgba(7, 18, 12, 0) 64%);
}
.standhero .statuspill {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px -8px rgba(8, 18, 12, 0.6);
}
.standhero__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.standhero__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e7eee8;
}
.standhero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.standhero__title {
  margin: 0;
  color: #fff;
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.standhero__price {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.standfacts {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 560px) {
  .standfacts {
    grid-template-columns: 1fr;
  }
}
.standfacts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.standfacts__ic {
  grid-column: 1;
  grid-row: 1/3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--st-available-bg);
  color: var(--brand-d);
}
.standfacts__ic svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}
.standfacts dt {
  align-self: end;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.standfacts dd {
  align-self: start;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.resfee {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--forest);
  color: var(--bone);
}
.resfee__ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #06180e;
}
.resfee__ic svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}
.resfee__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.resfee__label {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.resfee__sub {
  font-size: 0.8rem;
  color: #cdd8cf;
}
.resfee__amt {
  font-family: "Google Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #fff;
  white-space: nowrap;
}

.ministeps {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 18px 0 6px;
  counter-reset: ms;
}
.ministeps li {
  flex: 1;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-mute);
  padding-top: 22px;
  position: relative;
}
.ministeps li::before {
  counter-increment: ms;
  content: counter(ms);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink-soft);
  font-size: 0.72rem;
}
.ministeps li.is-active {
  color: var(--brand-d);
}
.ministeps li.is-active::before {
  background: var(--brand);
  color: #06180e;
}

.mfield {
  margin-top: 14px;
}
.mfield label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.mfield input, .mfield textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bone);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mfield input:focus, .mfield textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--st-available-bg);
}
.mfield textarea {
  resize: vertical;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 11, 0.93);
  backdrop-filter: blur(6px);
  animation: pdpFade 0.25s var(--ease);
  cursor: zoom-out;
}
.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  pointer-events: none;
}
.lightbox__img {
  max-width: min(1600px, 95vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.85);
  animation: lbZoom 0.32s var(--ease);
  transition: opacity 0.2s var(--ease);
  pointer-events: auto;
}
.lightbox__bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(12, 26, 43, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}
.lightbox__caption {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.lightbox__count {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 12, 0.5);
  color: #fff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lightbox__close svg, .lightbox__nav svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #06180e;
}
.lightbox__close:focus-visible, .lightbox__nav:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.lightbox__close {
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 46px;
  height: 46px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox__nav--prev {
  left: clamp(10px, 3vw, 32px);
}
.lightbox__nav--next {
  right: clamp(10px, 3vw, 32px);
}
.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.06);
}
@media (max-width: 560px) {
  .lightbox__nav {
    width: 44px;
    height: 44px;
  }
  .lightbox__nav svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes lbZoom {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.js [data-reveal] {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__panel {
    animation: none;
  }
  .gthumb img, .hl, .doc, .standcell, .btn {
    transition: none;
  }
  .standcell__img {
    transition: none;
  }
  .standcell:hover .standcell__img {
    transform: none;
  }
  .standcell__cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery__img {
    transition: opacity 0.4s var(--ease);
  }
  .gallery__stage:hover .gallery__img {
    transform: none;
  }
  .lightbox__backdrop, .lightbox__img {
    animation: none;
  }
}
