:root {
  --ink: #f4f4f2;
  --charcoal: #050505;
  --graphite: #151719;
  --paper: #101113;
  --concrete: #0b0c0e;
  --steel: #aeb3b7;
  --fog: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --sidebar-width: 286px;
  --sidebar-collapsed-width: 92px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(180deg, #050505 0%, #0b0c0e 48%, #151719 100%);
  color: var(--ink);
  min-height: 100vh;
}

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

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 48px;
  width: var(--sidebar-width);
  min-height: 100vh;
  padding: 46px 30px;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  transition: width 220ms ease, padding 220ms ease;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.logo-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.85rem;
  width: 100%;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.nav a {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav a::before {
  content: attr(data-short);
  display: none;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

main,
.footer {
  margin-right: var(--sidebar-width);
  transition: margin-right 220ms ease;
}

.sidebar-toggle {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-align: left;
  text-transform: uppercase;
}

.sidebar-toggle:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

body.sidebar-collapsed .site-header {
  width: var(--sidebar-collapsed-width);
  padding: 34px 14px;
}

body.sidebar-collapsed main,
body.sidebar-collapsed .footer {
  margin-right: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .logo {
  align-items: center;
}

body.sidebar-collapsed .logo span:first-child {
  font-size: 0;
}

body.sidebar-collapsed .logo span:first-child::before {
  content: "RS";
  font-size: 1.15rem;
}

body.sidebar-collapsed .logo-subtitle {
  display: none;
}

body.sidebar-collapsed .sidebar-toggle {
  padding: 12px 0;
  text-align: center;
}

body.sidebar-collapsed .sidebar-toggle {
  font-size: 0;
}

body.sidebar-collapsed .sidebar-toggle::before {
  content: "Open";
  font-size: 0.68rem;
}

body.sidebar-collapsed .nav a {
  padding: 14px 0;
  justify-content: center;
  text-align: center;
  font-size: 0;
}

body.sidebar-collapsed .nav a::before {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.hero {
  padding: 80px 8vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
}

.lcp-masthead {
  min-height: 72vh;
  align-items: end;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  right: 8vw;
  top: -120px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lede {
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

.button.primary {
  background: var(--ink);
  color: var(--charcoal);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button.muted {
  border-color: rgba(244, 244, 242, 0.24);
  background: rgba(244, 244, 242, 0.08);
  color: rgba(244, 244, 242, 0.62);
  filter: grayscale(1);
}

.button.is-sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

.subheading-link {
  margin-bottom: 24px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.panel-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.proof-panel {
  align-self: stretch;
  align-content: end;
}

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

.proof-strip span {
  background: rgba(16, 17, 19, 0.96);
  padding: 14px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card .eyebrow {
  margin-top: 0;
}

.panel-card[href]:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.section {
  padding: 70px 8vw;
}

.section.alt {
  background: var(--concrete);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.path-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.path-card p {
  line-height: 1.55;
}

.path-card .button {
  margin-top: auto;
  width: fit-content;
}

.primary-path {
  background: #000000;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.print-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  margin: -8px -8px 16px;
  box-shadow: var(--shadow);
}

.print-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.print-collection-grid > .card {
  order: 20;
}

.print-collection-grid .current-print {
  order: 10;
}

.print-collection-grid .expedition-print {
  order: 30;
}

.print-group-heading {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.print-group-heading h3 {
  margin: 4px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.current-release-heading {
  order: 1;
  padding-top: 0;
  border-top: 0;
}

.monthly-release-heading {
  order: 19;
}

.expedition-release-heading {
  order: 29;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.card.highlight {
  background: #000000;
  color: var(--ink);
}

.rates-card {
  margin-top: 24px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rates-note {
  margin: 6px 0 0;
  font-size: 0.95rem;
  opacity: 0.75;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.highlights-card {
  max-width: 940px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(16, 17, 19, 0.96), rgba(0, 0, 0, 0.98));
  border: 1px solid rgba(244, 244, 242, 0.36);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.highlights-list {
  margin: 0;
}

.highlights-list li {
  display: block;
  padding: 22px 26px;
  color: var(--ink);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.highlights-list li:last-child {
  border-bottom: 0;
}

.highlights-list li:hover {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.04);
}

.small-note {
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 18px;
}

.breadcrumb a {
  opacity: 0.85;
}

.breadcrumb-sep {
  opacity: 0.5;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
}

.photo-card .photo-placeholder {
  height: 160px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #000000, var(--graphite));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 16px;
}

.photo-card .photo-hero {
  background-size: cover;
  background-position: center;
  color: transparent;
}

.camera-note-grid {
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item .caption {
  padding: 14px 18px 18px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
}

.contact-card {
  background: #000000;
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prints-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.contact-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08090b;
  box-shadow: var(--shadow);
}

.contact-modal-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(244, 244, 242, 0.34);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(244, 244, 242, 0.76);
}

.footer {
  padding: 32px 8vw 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(244, 244, 242, 0.58);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-links a {
  color: rgba(244, 244, 242, 0.68);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 244, 242, 0.22);
}

.footer-links a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.scroll-home {
  min-height: 100vh;
}

.scroll-panel {
  min-height: 92vh;
  padding: 96px 9vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.scroll-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  z-index: 1;
}

.scroll-panel > * {
  position: relative;
  z-index: 2;
}

.intro-panel {
  justify-content: flex-start;
  align-items: center;
  padding-top: 14vh;
  padding-bottom: 10vh;
  background: #000000;
  text-align: center;
}

.intro-panel > .eyebrow {
  font-size: clamp(1rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.intro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.68) 64%, #000000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.58) 58%, #000000 100%),
    url("assets/expeditions/Prints/web/00001171%20-%20expired_000011710018.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.55) contrast(0.72) brightness(1.22);
  opacity: 0.58;
  z-index: 0;
}

.intro-panel h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
}

.home-logo-title {
  margin: 0;
  max-width: min(980px, 100%);
}

.home-logo-title img {
  display: block;
  width: min(396px, 100%);
  height: auto;
  margin: 0 auto;
}

.home-logo-subtitle {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin: 8px 0 0;
  color: rgba(244, 244, 242, 0.84);
  line-height: 1.45;
  text-transform: uppercase;
}

.home-logo-subtitle strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-logo-subtitle span {
  color: rgba(244, 244, 242, 0.74);
  font-size: clamp(0.78rem, 1.1vw, 0.98rem);
  letter-spacing: 0.16em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sidebar-list {
  width: min(720px, 100%);
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.sidebar-list span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-panel {
  background: #0b0c0e;
}

.text-panel h2,
.uplights-panel h2,
.split-panel h2,
.note-panel h2 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.75rem);
  line-height: 0.95;
}

.text-panel p,
.uplights-panel p,
.note-panel p {
  max-width: 680px;
  color: rgba(244, 244, 242, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 420px);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
  background: #050505;
}

.uplights-panel {
  background:
    linear-gradient(135deg, rgba(244, 244, 242, 0.1), transparent 36%),
    linear-gradient(180deg, #111214, #070809);
}

.uplights-panel h2 {
  max-width: 980px;
}

.uplights-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.uplights-list span {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.split-panel-copy {
  max-width: 760px;
}

.split-panel-copy .eyebrow {
  margin-bottom: 22px;
}

.split-panel-copy h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 5.2vw, 4.95rem);
  line-height: 1.02;
}

.link-stack {
  border-left: 1px solid var(--line);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-stack a {
  display: block;
  padding: 22px 0 22px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.link-stack a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.note-panel {
  min-height: 78vh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 38%),
    #101113;
}

.brand-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, #000000, rgba(16, 17, 19, 0.96), #000000);
}

.brand-strip-title {
  margin: 0;
  padding: 18px 8vw 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-marquee {
  display: flex;
  width: max-content;
  gap: clamp(32px, 6vw, 86px);
  padding: 18px 0 28px;
  animation: brand-marquee 28s linear infinite;
  will-change: transform;
}

.brand-marquee span {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    animation: none;
    transform: translateX(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .split-panel {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    min-height: auto;
    padding-block: 88px;
    overflow: visible;
  }

  .split-panel-copy {
    max-width: 680px;
  }

  .split-panel-copy .eyebrow {
    margin-bottom: 16px;
  }

  .split-panel-copy h2 {
    max-width: 680px;
    font-size: clamp(2.45rem, 7vw, 4.75rem);
    line-height: 1;
  }

  .link-stack {
    width: min(680px, 100%);
    border-left: 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: auto;
  }

  .link-stack a {
    min-height: 72px;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
  }

  .link-stack a:nth-child(2n) {
    border-right: 0;
  }

  .uplights-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uplights-list span:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    width: auto;
    min-height: auto;
    padding: 18px 6vw;
    right: auto;
    flex-direction: column;
    gap: 16px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidebar-toggle {
    display: none;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    gap: 14px;
  }

  .nav a {
    border-bottom: 0;
    padding: 0;
  }

  main,
  .footer {
    margin-right: 0;
  }

  body.sidebar-collapsed .site-header {
    width: auto;
    padding: 18px 6vw;
  }

  body.sidebar-collapsed main,
  body.sidebar-collapsed .footer {
    margin-right: 0;
  }

  body.sidebar-collapsed .logo {
    align-items: flex-start;
  }

  body.sidebar-collapsed .logo span:first-child {
    font-size: 1.25rem;
  }

  body.sidebar-collapsed .logo span:first-child::before {
    content: none;
  }

  body.sidebar-collapsed .logo-subtitle {
    display: block;
  }

  body.sidebar-collapsed .nav a {
    font-size: 0.85rem;
  }

  body.sidebar-collapsed .nav a::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 56px;
  }

  .scroll-panel {
    min-height: 86vh;
    padding: 72px 24px;
  }

  .intro-panel {
    padding-bottom: 72px;
  }

  .split-panel {
    gap: 42px;
  }

  .link-stack {
    grid-template-columns: 1fr;
  }

  .link-stack a {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
  }

  .uplights-list {
    grid-template-columns: 1fr;
  }

  .uplights-list span {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal-panel {
    padding: 28px 20px 22px;
  }
}
