:root {
  --ink: #071014;
  --paper: #f7f4ee;
  --mist: #dfe8e8;
  --sky: #0d8ac6;
  --lime: #cce642;
  --clay: #a45a36;
  --forest: #203f32;
  --line: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

figure {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.82rem;
}

.site-header nav {
  gap: clamp(12px, 2.5vw, 34px);
  font-size: 0.88rem;
  font-weight: 700;
}

.camera-header {
  background: rgba(7, 16, 20, 0.72);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 16, 20, 0.55) 0%, rgba(7, 16, 20, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(900px, calc(100% - 36px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 110px clamp(18px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 11vw, 10.5rem);
}

h2 {
  font-size: clamp(2.7rem, 6vw, 6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
}

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

.button.ghost {
  color: white;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: absolute;
  z-index: 6;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(20px, 6vw, 72px);
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: rgba(7, 16, 20, 0.52);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.slide-controls {
  position: absolute;
  z-index: 7;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(20px, 6vw, 72px);
  display: flex;
  gap: 10px;
}

.icon-button,
.gallery-control,
.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: white;
  background: rgba(7, 16, 20, 0.45);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.gallery-control:hover,
.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  background: rgba(7, 16, 20, 0.75);
}

.icon-button {
  width: 50px;
  height: 50px;
  font-size: 2rem;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.85fr);
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(74px, 11vw, 150px) clamp(18px, 6vw, 92px);
  background: var(--ink);
  color: white;
}

.intro-band p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--forest);
  color: white;
}

.feature-grid article {
  min-height: 360px;
  padding: clamp(28px, 5vw, 70px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-grid article:nth-child(2) {
  background: var(--clay);
}

.feature-grid article:nth-child(3) {
  color: var(--ink);
  background: var(--lime);
}

.feature-grid span {
  margin-bottom: auto;
  font-weight: 900;
  opacity: 0.72;
}

.feature-grid p {
  margin-bottom: 0;
  line-height: 1.65;
}

.gallery-section {
  padding: clamp(76px, 10vw, 138px) 0;
  overflow: hidden;
}

.section-heading {
  max-width: 980px;
  padding: 0 clamp(18px, 6vw, 92px) 36px;
}

.section-heading .eyebrow,
.routes-copy .eyebrow,
.intro-copy .eyebrow {
  color: var(--sky);
}

.section-heading p:last-child {
  max-width: 560px;
  color: rgba(7, 16, 20, 0.68);
  font-size: 1.08rem;
  line-height: 1.55;
}

.gallery-wrap {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 68vw);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0 clamp(18px, 6vw, 92px) 18px;
  scrollbar-width: thin;
}

.gallery-card {
  position: relative;
  height: clamp(320px, 52vw, 680px);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  scroll-snap-align: center;
}

.gallery-card button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: inherit;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 80px 22px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  font-weight: 900;
}

.gallery-card span {
  color: var(--lime);
  font-size: 0.82rem;
}

.gallery-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-control:hover {
  transform: translateY(calc(-50% - 2px));
}

.gallery-control.left {
  left: 22px;
}

.gallery-control.right {
  right: 22px;
}

.routes {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 760px;
  background: var(--ink);
  color: white;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(76px, 10vw, 140px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(rgba(247, 244, 238, 0.9), rgba(247, 244, 238, 0.97)),
    url("images/34231edbc556097c11a7f0ee2da9da65_413746.6666666667_1772562319704.jpg") center / cover;
}

.blog-feature-alt {
  background:
    linear-gradient(rgba(7, 16, 20, 0.82), rgba(7, 16, 20, 0.9)),
    url("images/78b8daf803fe776f39512f870921d819_350600.0_1776071554180.jpg") center / cover;
}

.blog-feature-alt .blog-post {
  background: rgba(255, 255, 255, 0.9);
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.blog-sidebar .eyebrow {
  color: var(--lime);
}

.blog-sidebar h2 {
  margin-bottom: 18px;
}

.blog-sidebar p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.stats-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.stats-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-list dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.stats-list dd {
  margin: 0;
  color: var(--lime);
  font-weight: 900;
  text-align: right;
}

.blog-post {
  max-width: 820px;
  padding: clamp(22px, 4vw, 54px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

.blog-post p {
  margin-bottom: 1.25em;
  color: rgba(7, 16, 20, 0.82);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  line-height: 1.72;
}

.blog-post h3 {
  margin: 1.5em 0 0.55em;
  color: var(--forest);
  font-family: Newsreader, Georgia, serif;
  line-height: 1.05;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.lesson-grid div {
  padding: 22px;
  border-radius: 8px;
  background: var(--mist);
}

.lesson-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-weight: 900;
}

.lesson-grid p {
  margin-bottom: 0.7em;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.camera-page {
  background: var(--ink);
}

.camera-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.camera-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(7, 16, 20, 0.82), rgba(7, 16, 20, 0.04) 58%);
}

.camera-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 130px clamp(18px, 6vw, 92px) clamp(54px, 8vw, 110px);
}

.camera-hero-copy p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.kit-section {
  padding: clamp(76px, 10vw, 140px) 0;
  color: var(--ink);
  background: var(--paper);
}

.kit-grid {
  display: grid;
  gap: 24px;
  padding: 0 clamp(18px, 6vw, 92px);
}

.kit-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.kit-card:nth-child(even) .kit-media {
  order: 2;
}

.kit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.kit-tag {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-copy p,
.kit-copy li {
  color: rgba(7, 16, 20, 0.72);
  line-height: 1.62;
}

.kit-copy ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding-left: 20px;
}

.kit-copy .button {
  width: max-content;
}

.mounting-notes {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(74px, 10vw, 140px) clamp(18px, 6vw, 92px);
  color: white;
  background: var(--forest);
}

.mounting-notes .eyebrow {
  color: var(--lime);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.note-grid h3 {
  font-size: 1.35rem;
}

.note-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.instagram-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(74px, 10vw, 140px) clamp(18px, 6vw, 92px);
  color: white;
  background: var(--clay);
}

.instagram-copy {
  max-width: 620px;
}

.instagram-copy .eyebrow {
  color: var(--lime);
}

.instagram-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
}

.instagram-copy .button {
  margin-top: 16px;
}

.instagram-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-auto-rows: clamp(160px, 18vw, 260px);
  gap: 14px;
}

.instagram-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.instagram-mosaic img:first-child {
  grid-row: span 2;
}

.instagram-mosaic img:nth-child(4) {
  grid-column: span 2;
}

.routes-image {
  min-height: 520px;
}

.routes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routes-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 86px);
}

.route-list {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.route-list p {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.route-list strong {
  display: block;
  color: white;
  font-size: 1.08rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 92px);
  color: white;
  background: var(--forest);
  font-weight: 800;
}

footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 46px);
  background: rgba(0, 0, 0, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-nav.previous {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-content {
    width: min(100%, calc(100% - 28px));
    padding-left: 18px;
    padding-right: 18px;
    justify-content: flex-end;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 6;
    margin: -96px 18px 92px;
  }

  .slide-controls {
    bottom: 24px;
  }

  .intro-band,
  .blog-feature,
  .instagram-band,
  .kit-card,
  .mounting-notes,
  .routes {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .kit-card:nth-child(even) .kit-media {
    order: 0;
  }

  .note-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .routes {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header nav {
    font-size: 0.78rem;
  }

  .site-header nav a:nth-child(4) {
    display: none;
  }

  .site-header nav a:nth-child(6) {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 20vw, 5.9rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .blog-post {
    padding: 20px;
  }

  .lesson-grid {
    grid-template-columns: 1fr;
  }

  .kit-copy .button {
    width: 100%;
  }

  .instagram-mosaic {
    grid-template-columns: 1fr;
  }

  .instagram-mosaic img:first-child,
  .instagram-mosaic img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-control,
  .lightbox-nav {
    display: none;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
