*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font);
  font-size: var(--text);
  line-height: 1.5;
}

html.is-nav-open,
html.is-nav-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

button,
input,
select {
  font: inherit;
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

::selection {
  background: var(--color-ink);
  color: var(--color-bg);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--color-ink);
  color: var(--color-bg);
  transition: top var(--duration) var(--ease);
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
}

.logo {
  position: relative;
  z-index: var(--z-toggle);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: var(--touch-min);
}

.logo::after {
  content: "Monokey";
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.logo-mark {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border: 1.6px solid var(--color-ink);
  border-radius: 0.35rem;
  background:
    radial-gradient(circle at 50% 40%, var(--color-ink) 0 18%, transparent 20%),
    linear-gradient(var(--color-ink), var(--color-ink)) 50% 70% / 18% 22% no-repeat;
  transition: transform 0.24s var(--ease), background-color 0.24s var(--ease);
}

.logo-mark::after {
  display: none;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: translateY(-1px) rotate(-3deg);
}

.nav-desktop {
  display: none;
  gap: clamp(1.25rem, 2.15vw, 2rem);
  margin-left: auto;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  padding-inline: 0.2rem;
  font-size: 0.9375rem;
}

.nav-desktop a:hover {
  opacity: 0.55;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--color-ink);
  position: relative;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.menu-toggle-bars::before { transform: translateY(-6px); }
.menu-toggle-bars::after { transform: translateY(6px); }

body.is-nav-open .menu-toggle-bars {
  background: transparent;
}

body.is-nav-open .menu-toggle-bars::before {
  transform: rotate(45deg);
}

body.is-nav-open .menu-toggle-bars::after {
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  height: auto;
  max-height: calc(100dvh - var(--header-height));
  padding: 0;
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-ink);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: none;
  transform: translateY(-0.6rem);
  opacity: 0;
  transition:
    transform 0.28s var(--ease),
    opacity 0.24s var(--ease),
    visibility 0.24s var(--ease);
}

.nav-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: none;
  opacity: 1;
}

.nav-overlay a {
  display: flex;
  align-items: baseline;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
  padding: 1.05rem max(var(--section-x), calc((100% - var(--container)) / 2));
  line-height: 0.9;
  font-size: clamp(2.2rem, 9.5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: lowercase;
  border-bottom: 1px solid var(--color-ink);
  transition: opacity var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.nav-overlay a:last-child {
  background: var(--color-ink);
  color: var(--color-bg);
  border-bottom: 0;
}

.nav-overlay a:hover {
  opacity: 0.55;
}

.nav-overlay a:last-child:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }
}

.hero {
  position: relative;
  z-index: var(--z-page);
  margin-top: var(--header-height);
}

.hero-grid {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
  padding: 0.85rem 0 1.5rem;
}

.hero-watermark {
  display: none;
}

.hero-shot,
.hero-face {
  display: grid;
  min-width: 0;
  justify-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-weight: 800;
  font-size: var(--h1);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-lead,
.section-lead {
  margin: 1.25rem 0 0;
  max-width: 34ch;
  font-size: var(--lead);
  line-height: 1.6;
  color: var(--color-muted);
}

.section-lead {
  margin-inline: auto;
  text-align: center;
}

.hero-shot img,
.hero-face img {
  display: block;
  width: min(100%, 22rem);
  max-height: 20rem;
  object-fit: contain;
  object-position: left center;
}

.hero-face {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  min-height: var(--touch-min);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: var(--color-btn);
  color: var(--color-ink);
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgb(10 10 10 / 0.05);
  cursor: pointer;
  transition:
    background-color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.btn:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1.25rem 0 1.75rem;
  }

  .hero-shot {
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }

  .hero-shot img {
    width: min(100%, 17rem);
    max-height: 22rem;
  }
}

@media (min-width: 993px) {
  .hero {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero > .wrap {
    width: 100%;
    margin-inline: 0;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(20rem, 0.85fr)
      minmax(11rem, 0.72fr);
    grid-template-areas:
      "watermark copy face"
      "shot copy face";
    align-items: end;
    column-gap: clamp(1.25rem, 2.8vw, 2.5rem);
    row-gap: 0.25rem;
    min-height: calc(100dvh - var(--header-height));
    padding: 1.25rem clamp(2.5rem, 5vw, 4.25rem) 1.5rem 0;
  }

  .hero-watermark {
    display: block;
    grid-area: watermark;
    align-self: end;
    margin: 0;
    padding: 0 0 0.12em clamp(1.85rem, 3.2vw, 3.25rem);
    font-weight: 900;
    font-size: clamp(2.6rem, 4.2vw, 4.25rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: var(--color-watermark);
    pointer-events: none;
    user-select: none;
  }

  .hero-shot {
    grid-area: shot;
    width: 100%;
    max-width: none;
    margin: 0;
    justify-items: start;
    align-self: start;
  }

  .hero-shot img {
    width: 100%;
    max-width: min(100%, 34rem);
    max-height: min(70dvh, 40rem);
    object-position: left center;
  }

  .hero-copy {
    grid-area: copy;
    align-self: center;
    max-width: 22rem;
  }

  .hero-face {
    display: grid;
    grid-area: face;
    align-self: start;
    justify-items: end;
    width: 100%;
    padding-top: 4.25rem;
  }

  .hero-face img {
    width: auto;
    max-width: min(100%, 17rem);
    height: min(76dvh, 44rem);
    max-height: min(76dvh, 44rem);
    object-fit: contain;
    object-position: top right;
  }
}

.band {
  padding-block: var(--section-y);
}

.band--paper {
  background: var(--color-paper);
}

.band--mist {
  background: var(--color-mist);
}

.band--photo {
  background-repeat: no-repeat;
  background-size: cover;
}

.band--photo-privacy {
  background-color: var(--color-bg);
  background-image:
    linear-gradient(rgb(255 255 255 / 0.58), rgb(255 255 255 / 0.7)),
    url("../images/privacy-bg.png");
  background-position: center right;
}

.band--photo-why {
  background-color: var(--color-paper);
  background-image:
    linear-gradient(rgb(244 244 242 / 0.55), rgb(244 244 242 / 0.68)),
    url("../images/why-bg.png");
  background-position: center;
}

.band--dark {
  background: var(--color-ink);
  color: var(--color-bg);
  text-align: center;
  padding: var(--section-y) var(--section-x);
}

.display {
  margin: 0;
  font-weight: 800;
  font-size: var(--h2);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.center {
  text-align: center;
}

.ownership-layout {
  display: grid;
  gap: var(--rhythm);
}

.ownership-copy {
  min-width: 0;
  padding: 1.85rem var(--section-x) 2.4rem;
}

.lifestyle {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 22rem;
  object-fit: cover;
  object-position: top center;
}

.prose {
  margin: 1.75rem 0 0;
  max-width: 38ch;
  font-size: var(--lead);
  line-height: 1.6;
  color: var(--color-muted);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  margin-top: 2.25rem;
  background: var(--color-btn);
  color: var(--color-ink);
  transition: background-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.icon-btn:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
}

@media (min-width: 993px) {
  .ownership {
    padding-block: 0;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .ownership-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 0;
    height: 100%;
    min-height: 0;
    align-items: stretch;
  }

  .ownership-photo,
  .lifestyle {
    height: 100%;
    min-height: 0;
  }

  .lifestyle {
    aspect-ratio: auto;
    max-height: none;
    object-fit: cover;
  }

  .ownership-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  }
}

.split {
  display: grid;
  gap: var(--rhythm);
  align-items: center;
}

.exploded {
  width: 100%;
  max-height: min(58vh, 32rem);
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.magic-copy .display {
  font-size: clamp(2.6rem, 6.8vw, 5.65rem);
  line-height: 0.92;
  padding-bottom: 0.04em;
}

.magic-copy .prose {
  margin-top: 1.15rem;
  max-width: 36ch;
  font-size: clamp(1.125rem, 1.85vw, 1.45rem);
  line-height: 1.5;
}

.magic-copy .btn {
  margin-top: 1.35rem;
}

.magic-visual {
  display: grid;
  justify-items: stretch;
}

@media (min-width: 993px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
  }

  #product {
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    padding-block: 0;
    display: flex;
    align-items: center;
  }

  #product .split {
    grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
    gap: 1.25rem 1.75rem;
    align-items: center;
    min-height: 100dvh;
    width: 100%;
  }

  .magic-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-left: clamp(2rem, 5.5vw, 4.75rem);
  }

  .magic-visual {
    min-width: 0;
    justify-items: center;
  }

  .exploded {
    width: min(36rem, 100%);
    max-height: min(86vh, 52rem);
    aspect-ratio: auto;
  }
}

.feat {
  display: grid;
  gap: 2rem;
}

.feat-title {
  max-width: 10ch;
}

.feat-spotlight {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

.feat-spotlight h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.feat-rail {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 1.35rem;
}

.feat-rail h3,
.why-item h3 {
  margin: 0;
  font-size: var(--h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feat-spotlight p,
.feat-rail p,
.privacy-grid p,
.why-item p {
  margin: 0.55rem 0 0;
  max-width: 36ch;
  font-size: var(--lead);
  line-height: 1.55;
  color: var(--color-muted);
}

@media (min-width: 577px) {
  .feat-spotlight,
  .feat-rail,
  .privacy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
  }

  .feat-spotlight {
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 993px) {
  .feat {
    grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
    grid-template-areas:
      "title spotlight"
      "title rail";
    column-gap: 3.5rem;
    row-gap: 0;
    align-items: start;
  }

  .feat-title {
    grid-area: title;
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }

  .feat-spotlight {
    grid-area: spotlight;
    padding-top: 0;
    border-top: 0;
  }

  .feat-rail {
    grid-area: rail;
    margin-top: 2.25rem;
  }
}

.compare {
  display: grid;
  gap: 1.75rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--color-ink);
}

.compare-col {
  min-width: 0;
  padding: 1.5rem 0 1.6rem;
}

.compare-col--hot {
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
}

.compare-col--cold {
  color: var(--color-ink);
  padding-bottom: 0.15rem;
}

.compare-col h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-ink);
}

.compare-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  max-width: 34ch;
  line-height: 1.45;
}

.compare-note {
  margin: 0;
  max-width: 48ch;
  color: var(--color-ink);
  font-size: var(--lead);
  line-height: 1.55;
}

.compare-note strong {
  font-weight: 800;
}

@media (min-width: 768px) {
  .compare {
    gap: 2rem;
  }

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

  .compare-col {
    padding: 1.75rem 0 0.15rem;
  }

  .compare-col--hot {
    padding-right: 2.25rem;
    border-bottom: 0;
  }

  .compare-col--cold {
    padding-left: 2.25rem;
    border-left: 1px solid var(--color-ink);
  }

  .compare-col h3 {
    font-size: 1.25rem;
  }

  .compare-list {
    margin-top: 1.15rem;
    gap: 0.85rem;
  }
}

.privacy-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
}

.privacy-grid h3 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

@media (min-width: 993px) {
  .privacy-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}

.keys-panel {
  margin: var(--section-y) 0 0;
  padding: var(--rhythm) 0 0;
  border-top: 1px solid var(--color-line);
}

.keys-panel h3 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.keys-panel p {
  margin: 1.1rem 0 0;
  max-width: 46rem;
  font-size: var(--lead);
  line-height: 1.6;
  color: var(--color-muted);
}

.why-list {
  margin-top: 2rem;
  border-top: 1px solid rgb(10 10 10 / 0.18);
}

.why-item {
  min-width: 0;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgb(10 10 10 / 0.18);
}

.why-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

@media (min-width: 577px) {
  .why-item {
    display: grid;
    grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
    gap: 1.5rem 2.5rem;
    align-items: baseline;
    padding: 1.6rem 0;
  }

  .why-item p {
    margin: 0;
    max-width: 48ch;
  }
}

.reserve {
  width: var(--container-form);
  margin-inline: auto;
  text-align: center;
}

.reserve-form {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--rhythm);
  text-align: left;
}

.field {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.field label,
.interests legend {
  font-size: var(--small);
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: var(--touch-min);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-ink);
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.field input:focus,
.field select:focus {
  border-color: var(--color-ink);
}

.reserve-form.is-error .field input:invalid,
.reserve-form.is-error .field select:invalid {
  border-color: var(--color-error);
}

.interests {
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.5rem;
}

.interest-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: var(--touch-min);
}

.reserve-form button {
  min-height: var(--touch-min);
  padding: 0.85rem 1.5rem;
  border: 0;
  background: var(--color-ink);
  color: var(--color-bg);
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.reserve-form button:hover {
  transform: translateY(-2px);
}

.reserve-form button:active {
  transform: translateY(0) scale(0.98);
}

.form-note {
  margin: 0;
  color: var(--color-error);
  font-size: var(--small);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.28s var(--ease);
}

.form-note[hidden] {
  display: block;
}

.form-note:not([hidden]) {
  max-height: 4rem;
  opacity: 1;
}

.reserve-hint {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: var(--small);
}

.reserve-form,
.reserve-hint {
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease), max-height 0.4s var(--ease), margin 0.36s var(--ease);
}

.reserve-success {
  display: block;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), margin 0.36s var(--ease), transform 0.4s var(--ease);
}

.reserve.is-success .reserve-form,
.reserve.is-success .reserve-hint {
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
}

.reserve.is-success .reserve-success {
  max-height: 8rem;
  opacity: 1;
  margin: 1.25rem 0 0;
  transform: none;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  margin-top: 0;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 1rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: var(--h3);
  font-weight: 600;
}

.faq-sign {
  flex: none;
  font-weight: 400;
  transition: transform 0.36s var(--ease);
}

.faq-item.is-open .faq-sign {
  transform: rotate(45deg);
}

.faq-a {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  max-width: 62ch;
  color: var(--color-muted);
  line-height: 1.6;
  transition: max-height 0.42s var(--ease), opacity 0.3s var(--ease), margin 0.36s var(--ease);
}

.faq-item.is-open .faq-a {
  max-height: 14rem;
  opacity: 1;
  margin: 0 0 1.15rem;
}

@media (min-width: 993px) {
  .faq {
    grid-template-columns: minmax(14rem, 0.4fr) minmax(0, 0.6fr);
    gap: 3rem;
    align-items: start;
  }

  .faq .display {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }
}

.closer {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.closer .display {
  font-size: var(--h-close);
}

.closer .btn {
  background: var(--color-bg);
  color: var(--color-ink);
}

.closer .btn:hover {
  background: var(--color-btn);
}

.site-footer {
  padding: var(--section-y) 0 1.5rem;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  position: relative;
  min-width: 0;
}

.footer-brand::before {
  content: "Monokey";
  position: absolute;
  top: 0.25rem;
  left: 2.4rem;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.footer-brand > .logo-mark {
  margin: 0;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 28ch;
  color: var(--color-muted);
}

.footer-col {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.footer-col p {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  font-size: var(--small);
  transition: opacity var(--duration) var(--ease);
}

.footer-col a:hover {
  opacity: 0.55;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin: var(--rhythm) 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  font-size: var(--small);
  line-height: 1.45;
  color: var(--color-muted);
}

.footer-copy span {
  margin: 0;
}

.footer-copy span:last-child {
  margin-left: auto;
  text-align: right;
}

@media (min-width: 577px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 993px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    gap: 1rem;
  }

  .logo {
    margin-right: auto;
  }

  .menu-toggle {
    padding-inline: 0.25rem;
  }

  .hero-break {
    display: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 0 2.75rem;
  }

  .hero-shot {
    display: none;
  }

  .hero-face {
    display: grid;
    justify-items: center;
    order: -1;
    width: calc(100% + 2 * var(--section-x));
    margin-inline: calc(-1 * var(--section-x));
    padding: 1.85rem var(--section-x) 1.6rem;
    background: var(--color-paper);
  }

  .hero-face img {
    width: min(52vw, 12.75rem);
    max-width: none;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12.8vw, 3.55rem);
    letter-spacing: -0.055em;
    line-height: 0.88;
  }

  .hero-lead,
  .prose,
  .ownership-copy .prose,
  .magic-copy .prose {
    margin-top: 0.95rem;
    line-height: 1.5;
    max-width: 34ch;
  }

  .hero-lead {
    max-width: 30ch;
  }

  .btn,
  .hero .btn,
  .magic-copy .btn {
    margin-top: 1.35rem;
  }

  .icon-btn {
    margin-top: 1.35rem;
  }

  .band {
    padding-block: var(--section-y);
  }

  .display,
  .magic-copy .display,
  .feat-title {
    font-size: var(--h2);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .ownership {
    padding-block: 0;
  }

  .ownership-layout {
    gap: 0;
  }

  .ownership-copy {
    padding: 2rem var(--section-x) 2.75rem;
  }

  .lifestyle {
    aspect-ratio: 4 / 5;
    max-height: 26rem;
    object-position: top center;
  }

  .split {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .magic-visual {
    order: -1;
    justify-items: center;
  }

  .exploded {
    width: min(58vw, 15rem);
    max-height: none;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

  .feat {
    gap: 1.75rem;
  }

  .feat-title {
    max-width: none;
  }

  .feat-spotlight,
  .feat-rail,
  .privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    gap: 0;
  }

  .feat-spotlight,
  .feat-rail {
    padding-top: 0;
    border-top: 0;
  }

  .feat-spotlight .card,
  .feat-rail li {
    padding: 1.15rem 0 1.25rem;
    border-bottom: 1px solid var(--color-line);
  }

  .feat-spotlight .card:first-child,
  .feat-rail li:first-child {
    border-top: 1px solid var(--color-line);
  }

  .feat-spotlight h3,
  .feat-rail h3 {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
  }

  .feat-spotlight p,
  .feat-rail p,
  .privacy-grid p,
  .why-item p {
    margin-top: 0.45rem;
  }

  .privacy-grid {
    gap: 1.6rem;
  }

  .privacy-grid h3 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .keys-panel {
    margin-top: 2rem;
    padding-top: 1.6rem;
  }

  .keys-panel h3 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .why-list {
    margin-top: 1.5rem;
  }

  .why-item {
    display: block;
    padding: 1.2rem 0;
  }

  .why-item h3 {
    font-size: 1.2rem;
  }

  .why-item p {
    margin: 0.4rem 0 0;
    max-width: 36ch;
  }

  .reserve-form {
    gap: 1.15rem;
    margin-top: 1.5rem;
  }

  .faq {
    gap: 1.5rem;
  }

  .faq-item button {
    min-height: 3.25rem;
    padding: 1rem 0;
    font-size: 1.0625rem;
  }

  .closer {
    padding-block: 4rem;
  }

  .closer .display {
    font-size: var(--h-close);
  }

  .site-footer {
    padding: 2.75rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-of-type {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.75rem;
  }

  .footer-col:last-of-type p {
    grid-column: 1 / -1;
  }

  .footer-col a {
    min-height: 2.75rem;
  }

  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-copy span:last-child {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 374px) {
  .footer-col:last-of-type {
    grid-template-columns: 1fr;
  }

  .footer-col:last-of-type p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
