:root {
  --bp-mobile: 900px;
  --page-bg: #F6F5F2;
  --page-text: #141412;
  --page-text-72: rgba(20, 20, 18, 0.72);
  --page-text-65: rgba(20, 20, 18, 0.65);
  --page-text-50: rgba(20, 20, 18, 0.5);
  --page-text-40: rgba(20, 20, 18, 0.4);
  --page-line: rgba(20, 20, 18, 0.14);
  --page-grid: rgba(20, 20, 18, 0.07);
  --page-hover: rgba(20, 20, 18, 0.035);
  --accent: #676815;
  --btn-hover-bg: #141412;
  --panel-bg: #141412;
  --panel-text: #F6F5F2;
  --panel-text-65: rgba(246, 245, 242, 0.65);
  --panel-text-50: rgba(246, 245, 242, 0.5);
  --panel-text-32: rgba(246, 245, 242, 0.32);
  --panel-text-28: rgba(246, 245, 242, 0.28);
  --panel-text-16: rgba(246, 245, 242, 0.16);
  --panel-text-05: rgba(246, 245, 242, 0.05);
  --panel-accent: #7E7F32;
}
html.dark {
  --page-bg: #0A0907;
  --page-text: #F2F2EF;
  --page-text-72: rgba(242, 242, 239, 0.75);
  --page-text-65: rgba(242, 242, 239, 0.68);
  --page-text-50: rgba(242, 242, 239, 0.55);
  --page-text-40: rgba(242, 242, 239, 0.42);
  --page-line: rgba(242, 242, 239, 0.14);
  --page-grid: rgba(242, 242, 239, 0.06);
  --page-hover: rgba(242, 242, 239, 0.05);
  --accent: #8A8C34;
  --btn-hover-bg: #000000;
  --panel-bg: #1E1D19;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/archivo-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/archivo-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/archivo-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Alfa Slab One';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/AlfaSlabOne-Regular.ttf') format('truetype');
}
* {
  box-sizing: border-box;
}
html.hero-ready {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--page-bg);
  color: var(--page-text);
  transition: background 0.3s ease, color 0.3s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
.grid-lines {
  background-image: repeating-linear-gradient(to right, var(--page-grid) 0px, var(--page-grid) 1px, transparent 1px, transparent 130px);
  transition: background-image 0.3s ease;
}
.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--page-text-50);
}
.kicker {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
}
.navlink {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.navlink:hover {
  color: var(--accent);
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #FCFCFC;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border: 1px solid var(--accent);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn-solid:hover {
  background: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: #FCFCFC;
}
.btn-solid:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--page-text);
  border-bottom: 1.5px solid var(--page-text);
  padding-bottom: 3px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--panel-text-28);
  color: var(--panel-text);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 17px;
  padding: 12px 2px;
  outline: none;
}
.field:focus {
  border-bottom-color: var(--panel-accent);
}
.field::placeholder {
  color: var(--panel-text-32);
}
.field:-webkit-autofill,
.field:-webkit-autofill:hover,
.field:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--panel-text);
  -webkit-box-shadow: 0 0 0 1000px var(--panel-bg) inset;
  box-shadow: 0 0 0 1000px var(--panel-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
textarea.field {
  resize: none;
}
.flabel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--panel-text-50);
}
.theme-toggle {
  position: fixed;
  top: 30px;
  right: 56px;
  z-index: 60;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1.5px solid var(--page-line);
  background: var(--page-bg);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.3s ease;
}
.theme-toggle:hover {
  border-color: var(--accent);
}
@media (max-width: 900px) {
  .theme-toggle {
    top: 24px;
    right: 24px;
  }
}
.theme-toggle__track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  color: var(--page-text);
}
.theme-toggle__icon--sun {
  left: 7px;
}
.theme-toggle__icon--moon {
  right: 7px;
}
.theme-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
html.dark .theme-toggle__knob {
  transform: translateX(22px);
}
.animal-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(50% - 3px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.animal-toggle[data-active='tup'] .animal-toggle__thumb {
  transform: translateX(100%);
}
.animal-toggle[data-active='stag'] .animal-toggle__thumb {
  transform: translateX(200%);
}
.animal-toggle__option {
  position: relative;
  z-index: 1;
  padding: 5px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--page-text-50);
  transition: color 0.25s ease;
}
.animal-toggle__option.is-active {
  color: #FCFCFC;
}
.nav-sentinel {
  height: 1px;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 56;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 148px 36px 64px;
  background: var(--page-bg);
  border-bottom: 1px solid var(--page-line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 900px) {
  .site-nav {
    padding: 24px 96px 24px 24px;
  }
}
.site-nav__mark {
  font-family: 'Alfa Slab One', serif;
  letter-spacing: 0.05em;
}
.site-nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .site-nav__links {
    display: none;
  }
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
html.js:not(.nav-stuck) .nav-burger {
  transform: translateX(calc(96px - 24px));
}
@media (max-width: 900px) {
  .nav-burger {
    display: flex;
  }
}
.nav-burger__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--page-text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
html.nav-open .nav-burger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
html.nav-open .nav-burger__line:nth-child(2) {
  opacity: 0;
}
html.nav-open .nav-burger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
html.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav__link {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--page-text);
  transition: color 0.15s ease;
}
.mobile-nav__link:hover {
  color: var(--accent);
}
.cover {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--page-bg);
  background-size: cover;
  border-bottom: 1px solid var(--page-line);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .cover {
    height: 100dvh;
    min-height: 100dvh;
  }
}
html:not(.dark) .cover {
  background: #FFFFFF;
}
/*********************************************
* preloader
*********************************************/
.cover__preloader {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
html.hero-ready .cover__preloader {
  opacity: 0;
  visibility: hidden;
}
.cover__preloader-ring {
  width: 32px;
  height: 32px;
  border: 2px solid var(--page-line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: cover-preloader-spin 0.8s linear infinite;
}
@keyframes cover-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cover__preloader-ring {
    animation-duration: 1.6s;
  }
}
/*********************************************
* wordmark
*********************************************/
.cover__wordmark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 900px) and (orientation: portrait) {
  .cover__wordmark {
    align-items: flex-start;
    top: 15dvh;
  }
}
.cover__wordmark-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover__word {
  font-family: 'Alfa Slab One', serif;
  font-weight: 900;
  font-size: clamp(65px, 17vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--page-text);
  white-space: nowrap;
  animation-duration: 5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}
.cover__word--rannoch {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.2));
  transform: translateX(calc(-100% - 100vw));
}
html.hero-ready .cover__word--rannoch {
  animation-name: cover-word-in-left;
}
.cover__word--digital {
  position: relative;
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.2));
  transform: translateX(calc(100% + 100vw));
  --cover-hatch-ink: #FFFFFF;
}
html.dark .cover__word--digital {
  --cover-hatch-ink: #000000;
}
html.hero-ready .cover__word--digital {
  animation-name: cover-word-in-right;
  animation-delay: 0.12s;
}
@media (max-width: 900px) {
  html.dark .cover__word {
    color: var(--page-text);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cover__word {
    animation: none;
    transform: none;
  }
}
@keyframes cover-word-in-left {
  from {
    transform: translateX(calc(-100% - 100vw));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes cover-word-in-right {
  from {
    transform: translateX(calc(100% + 100vw));
  }
  to {
    transform: translateX(0);
  }
}
/*********************************************
* caption (scroller / latlong)
*********************************************/
.cover__caption {
  position: relative;
  z-index: 4;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 64px 40px;
  text-align: center;
}
@media (max-width: 900px) {
  .cover__caption {
    padding: 0 24px 40px;
  }
}
.cover__coords {
  padding-top: 24px;
  opacity: 0.85;
  color: var(--accent);
}
.cover__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: -12px;
  color: var(--panel-text);
  cursor: pointer;
  animation: cover-scroll-bounce 1.8s ease-in-out infinite;
}
@media (max-width: 900px) {
  .cover__scroll {
    position: absolute;
    bottom: 20px;
  }
}
@keyframes cover-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cover__scroll {
    animation: none;
  }
}
/*********************************************
* animal switcher
*********************************************/
.cover__topleft {
  position: absolute;
  top: 30px;
  left: 56px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) {
  .cover__topleft {
    top: 24px;
    left: 24px;
  }
}
.animal-toggle {
  position: relative;
  display: flex;
  border: 1.5px solid var(--page-line);
  border-radius: 999px;
  padding: 3px;
  background: var(--page-bg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.3s ease;
}
.animal-toggle:hover {
  border-color: var(--accent);
}
/*********************************************
* sequence
*********************************************/
.cover__seq {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.cover__seq-el {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 100dvh;
  max-height: 1000px;
  width: auto;
  max-width: 98vw;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 900px) {
  .cover__seq-el {
    max-height: none;
  }
}
html.hero-ready .cover__seq-el.is-active {
  opacity: 1;
}
.cover__seq-el.cover__seq-bull {
  align-self: flex-end;
  left: calc(50% - (100dvh / 20));
  height: 100dvh;
  bottom: 0;
}
@media (max-width: 900px) {
  .cover__seq-el.cover__seq-bull {
    left: calc(50% - (100dvh / 22));
    height: 80dvh;
    max-width: 200vw;
  }
}
.cover__seq-el.cover__seq-tup {
  height: 75dvh;
  justify-self: flex-end;
  align-self: flex-end;
  left: calc(50% - (100dvh / 40));
  bottom: 0;
}
@media (max-width: 900px) {
  .cover__seq-el.cover__seq-tup {
    left: calc(50% - (100dvh / 85));
    height: 70dvh;
    max-width: 200vw;
  }
}
/*********************************************
* foreground
*********************************************/
.cover__foreground {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--page-line);
}
.intro__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 140px 0;
}
@media (max-width: 900px) {
  .intro__inner {
    padding: 96px 0;
  }
}
.intro__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  gap: 28px;
  max-width: 50%;
}
@media (max-width: 900px) {
  .intro__content {
    padding: 0 24px;
    max-width: none;
  }
}
.intro__heading {
  font-family: 'Alfa Slab One', serif;
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 900px) {
  .intro__heading {
    font-size: 56px;
  }
}
.intro__body {
  font-size: 19px;
  line-height: 1.55;
  max-width: 46ch;
  color: var(--page-text-72);
  margin: 0;
}
.intro__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.intro__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 64px;
}
.intro__footer .mono {
  position: absolute;
  bottom: 30px;
}
@media (max-width: 900px) {
  .intro__footer {
    padding: 0 24px;
  }
}
:root {
  --map-ink: #2b2b26;
  --map-water: #4a7a94;
  --map-woodland: #5c6b4f;
  --map-furniture: #55605e;
  --map-gain: 1;
  --map-contour-opacity: 0.18;
  --map-contour-width: 1.1;
  --map-contour-index-opacity: 0.3;
  --map-contour-index-width: 1.9;
  --map-contour-label-opacity: 0.26;
  --map-water-opacity: 0.136;
  --map-water-width: 2.6;
  --map-cliff-opacity: 0.24;
  --map-cliff-width: 2;
  --map-path-opacity: 0.1;
  --map-path-width: 6;
  --map-road-opacity: 0.05;
  --map-road-width: 20;
  --map-road-major-opacity: 0.05;
  --map-road-major-width: 30;
  --map-building-opacity: 0.05;
  --map-woodland-opacity: 0.09;
  --map-woodland-width: 2.4;
  --map-trig-point-opacity: 0.5;
  --map-trig-point-width: 2.4;
  --map-spot-height-opacity: 0.62;
  --map-landmark-name-opacity: 0.24;
  --map-village-name-opacity: 0.3;
  --map-water-name-opacity: 0.34;
  --map-contour-opacity-sm: 0.5;
  --map-contour-index-opacity-sm: 0.8;
  --map-contour-label-opacity-sm: 0.22;
  --map-furniture-sm: inherit;
  --map-detail-sm: inherit;
}
html.dark {
  --map-ink: #E7E3DA;
  --map-water: #8FB8CC;
  --map-woodland: #9BA98F;
  --map-furniture: #B9C4C6;
}
.contours .contour-line {
  stroke: var(--map-ink);
  stroke-width: var(--map-contour-width);
  fill: none;
  opacity: calc(var(--map-contour-opacity) * var(--map-gain));
}
.contours .contour-index {
  stroke: var(--map-ink);
  stroke-width: var(--map-contour-index-width);
  fill: none;
  opacity: calc(var(--map-contour-index-opacity) * var(--map-gain));
}
.contours .contour-label {
  fill: var(--map-ink);
  stroke: none;
  opacity: calc(var(--map-contour-label-opacity) * var(--map-gain));
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.contours .water {
  stroke: var(--map-water);
  stroke-width: var(--map-water-width);
  fill: none;
  opacity: calc(var(--map-water-opacity) * var(--map-gain));
}
.contours .cliff {
  stroke: var(--map-ink);
  stroke-width: var(--map-cliff-width);
  fill: none;
  opacity: calc(var(--map-cliff-opacity) * var(--map-gain));
  stroke-dasharray: 9 7;
}
.contours .path {
  stroke: var(--map-ink);
  stroke-width: var(--map-path-width);
  fill: none;
  opacity: calc(var(--map-path-opacity) * var(--map-gain));
  stroke-dasharray: 14 16;
}
.contours .woodland {
  stroke: var(--map-woodland);
  stroke-width: var(--map-woodland-width);
  fill: none;
  opacity: calc(var(--map-woodland-opacity) * var(--map-gain));
}
.contours .building {
  fill: var(--map-ink);
  stroke: none;
  opacity: calc(var(--map-building-opacity) * var(--map-gain));
}
.contours .road {
  stroke: var(--map-ink);
  stroke-width: var(--map-road-width);
  fill: none;
  opacity: calc(var(--map-road-opacity) * var(--map-gain));
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contours .road .bridge {
  stroke-width: calc(var(--map-road-width) * .225);
}
.contours .road-major {
  stroke-width: var(--map-road-major-width);
  opacity: calc(var(--map-road-major-opacity) * var(--map-gain));
}
.contours .trig-point {
  stroke: var(--map-furniture);
  stroke-width: var(--map-trig-point-width);
  fill: none;
  opacity: calc(var(--map-trig-point-opacity) * var(--map-gain));
}
.contours .trig-point circle {
  fill: var(--map-furniture);
  stroke: none;
}
.contours .spot-height {
  fill: var(--map-furniture);
  stroke: none;
  opacity: calc(var(--map-spot-height-opacity) * var(--map-gain));
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.contours .landmark-name {
  fill: var(--map-ink);
  stroke: none;
  opacity: calc(var(--map-landmark-name-opacity) * var(--map-gain));
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 9px;
}
.contours .village-name {
  fill: var(--map-furniture);
  stroke: none;
  opacity: calc(var(--map-village-name-opacity) * var(--map-gain));
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 5px;
}
.contours .water-name {
  fill: var(--map-water);
  stroke: none;
  opacity: calc(var(--map-water-name-opacity) * var(--map-gain));
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  font-style: italic;
}
@media (max-width: 900px) {
  .contours .contour-line {
    opacity: calc(var(--map-contour-opacity-sm) * var(--map-gain));
  }
  .contours .contour-index {
    opacity: calc(var(--map-contour-index-opacity-sm) * var(--map-gain));
  }
  .contours .contour-label {
    opacity: calc(var(--map-contour-label-opacity-sm) * var(--map-gain));
  }
  .contours .trig-point,
  .contours .spot-height,
  .contours .landmark-name,
  .contours .village-name {
    display: var(--map-furniture-sm);
  }
  .contours .building,
  .contours .path,
  .contours .water-name {
    display: var(--map-detail-sm);
  }
}
.intro .map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.intro .map svg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 140px 64px;
  border-bottom: 1px solid var(--page-line);
}
@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 96px 24px;
  }
}
.services__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .services__left {
    position: static;
  }
}
.services__heading {
  font-family: 'Alfa Slab One', serif;
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}
@media (max-width: 900px) {
  .services__heading {
    font-size: 56px;
  }
}
.services__lede {
  max-width: 46ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--page-text-65);
  margin: 0;
}
.services__cta {
  width: fit-content;
  margin-top: 8px;
}
.services__right {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
}
@media (max-width: 900px) {
  .services__right {
    padding-left: 0px;
  }
}
.svc-block {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--page-line);
  overflow: hidden;
}
.svc-block:last-child {
  border-bottom: 1px solid var(--page-line);
}
.svc-block__num {
  position: absolute;
  top: 24px;
  right: 0;
  font-family: 'Alfa Slab One', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 900px) {
  .svc-block__num {
    font-size: 64px;
  }
}
.svc-block__name {
  font-family: 'Alfa Slab One', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  max-width: 80%;
  margin: 0 0 12px;
}
.svc-block__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-text-65);
  max-width: 46ch;
  margin: 0;
}
.launches {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px;
  border-bottom: 1px solid var(--page-line);
  gap: 48px;
}
@media (max-width: 900px) {
  .launches {
    padding: 96px 24px;
  }
}
.launches__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.launches__intro-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 50%;
}
@media (max-width: 900px) {
  .launches__intro-copy {
    max-width: none;
  }
}
.launches__heading {
  font-family: 'Alfa Slab One', serif;
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}
@media (max-width: 900px) {
  .launches__heading {
    font-size: 56px;
  }
}
.launches__lede {
  max-width: 46ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--page-text-65);
  margin: 0;
}
.launches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .launches__grid {
    grid-template-columns: 1fr;
  }
}
.launch-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--page-line);
  background: var(--page-hover);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
html.js .launch-card:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
.launch-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px -20px rgba(20, 20, 18, 0.35);
}
.launch-card:hover .launch-card__media img {
  transform: scale(1.06);
}
.launch-card:hover .launch-card__link {
  color: var(--accent);
}
.launch-card:hover .launch-card__arrow {
  transform: translateX(6px);
}
@media (prefers-reduced-motion: reduce) {
  .launch-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  html.js .launch-card:not(.is-visible) {
    opacity: 1;
    transform: translateY(0);
  }
}
.launch-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--page-line);
}
.launch-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.launch-card--cta {
  border-color: var(--accent);
}
.launch-card--cta .launch-card__services {
  color: var(--accent);
}
.launch-card--cta .launch-card__link {
  color: var(--accent);
}
.launch-card__cta-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--page-hover);
}
.launch-card__cta-plus {
  font-family: 'Alfa Slab One', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.launch-card--cta:hover .launch-card__cta-plus {
  transform: scale(1.15);
}
.launch-card__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--page-text-40);
}
.launch-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 24px;
}
.launch-card__services {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--page-text-40);
  margin-bottom: -4px;
}
.launch-card__name {
  font-family: 'Alfa Slab One', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}
.launch-card__desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--page-text-65);
  margin: 0;
}
.launch-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--page-line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--page-text);
  transition: color 0.15s ease;
}
.launch-card__arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px;
  background: var(--panel-bg);
  color: var(--panel-text);
  background-image: repeating-linear-gradient(to right, var(--panel-text-05) 0px, var(--panel-text-05) 1px, transparent 1px, transparent 130px);
  transition: background 0.3s ease;
}
@media (max-width: 900px) {
  .contact {
    padding: 96px 24px;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact__kicker {
  color: var(--panel-accent);
}
.contact__heading {
  font-family: 'Alfa Slab One', serif;
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 900px) {
  .contact__heading {
    font-size: 56px;
  }
}
.contact__lede {
  font-size: 19px;
  line-height: 1.6;
  max-width: 42ch;
  color: var(--panel-text-65);
  margin: 0;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  padding-top: 28px;
}
@media (max-width: 900px) {
  .contact__details {
    padding-top: 0;
    gap: 35px;
  }
}
.contact__detail-row {
  display: flex;
  align-items: center;
  max-width: 420px;
  font-size: 15px;
}
.contact__detail-row span:first-of-type {
  width: 100px;
}
.contact__detail-row .mono {
  color: var(--panel-text-50);
}
@media (max-width: 900px) {
  .contact__detail-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact__detail-row span {
    text-align: left;
    width: 100% !important;
    display: block;
  }
}
.contact__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact__submit {
  justify-content: center;
  margin-top: 8px;
}
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.contact__notice {
  margin: 0;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--panel-text-16);
}
.contact__notice--success {
  border-color: rgba(84, 182, 110, 0.5);
  color: #9EE1AB;
}
.contact__notice--error {
  border-color: rgba(242, 113, 106, 0.5);
  color: #FFA59D;
}
.contact__privacy {
  font-size: 13px;
  line-height: 1.55;
  color: var(--panel-text-50);
  margin: 20px 0 0;
}
.contact__privacy a {
  color: var(--panel-text-65);
  border-bottom: 1px solid var(--panel-text-28);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.contact__privacy a:hover {
  color: var(--panel-accent);
  border-bottom-color: var(--panel-accent);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 64px;
  border-top: 1px solid var(--page-line);
  background: var(--page-bg);
  color: var(--page-text-50);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 900px) {
  .site-footer {
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.site-footer__links {
  display: flex;
  gap: 24px;
}
.legal {
  padding: 96px 64px 120px;
}
@media (max-width: 900px) {
  .legal {
    padding: 56px 24px 80px;
  }
}
.legal__inner {
  max-width: 760px;
}
.legal__kicker {
  margin-bottom: 20px;
}
.legal__heading {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--page-text);
}
.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-bottom: 36px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--page-line);
}
.legal__lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--page-text-72);
  margin: 0 0 44px;
}
@media (max-width: 900px) {
  .legal__lede {
    font-size: 18px;
  }
}
.legal__section {
  margin-bottom: 44px;
}
.legal__section:last-child {
  margin-bottom: 0;
}
.legal__section-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--page-text);
}
.legal__section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--page-text-72);
  margin: 0 0 16px;
}
.legal__section p:last-child {
  margin-bottom: 0;
}
.legal__section ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal__section ul:last-child {
  margin-bottom: 0;
}
.legal__section li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--page-text-72);
  margin-bottom: 10px;
}
.legal__section li::marker {
  color: var(--page-text-40);
}
.legal__section a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.legal__section a:hover {
  border-bottom-color: var(--accent);
}
.legal__section strong {
  color: var(--page-text);
  font-weight: 600;
}
.legal__callout {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 0 0 44px;
}
.legal__callout p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--page-text-72);
  margin: 0 0 12px;
}
.legal__callout p:last-child {
  margin-bottom: 0;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.legal__table th {
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--page-text-50);
  font-weight: 500;
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--page-line);
  vertical-align: bottom;
}
.legal__table td {
  font-size: 15px;
  line-height: 1.55;
  color: var(--page-text-72);
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--page-line);
  vertical-align: top;
}
.legal__table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
}
.error404__heading {
  font-family: 'Alfa Slab One', serif;
  font-weight: 900;
  font-size: clamp(56px, 14vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--page-text);
}
/*********************************************
* vertical split
*********************************************/
