:root {
  --ink: #101416;
  --black: #0b0f11;
  --paper: #f6f4ef;
  --white: #ffffff;
  --muted: #6d7477;
  --line: #dcdedb;
  --teal: #4faeb0;
  --teal-light: #8bd1d0;
  --gold: #b89a61;
  --red: #bc203a;
  --navy: #173244;
  --container: 1180px;
  --side: clamp(22px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
article[id] {
  scroll-margin-top: 68px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0b0f11;
  transition: opacity .65s ease, visibility .65s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  width: 56px;
  height: 48px;
}

.loader__mark span {
  flex: 1;
  background: var(--teal-light);
  animation: loader-bars 1s ease-in-out infinite;
}

.loader__mark span:nth-child(1) {
  height: 30%;
}

.loader__mark span:nth-child(2) {
  height: 85%;
  animation-delay: .12s;
}

.loader__mark span:nth-child(3) {
  height: 55%;
  animation-delay: .24s;
}

@keyframes loader-bars {
  50% { transform: scaleY(.4); opacity: .45; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  padding: 14px var(--side);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .35s ease, min-height .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 15, 17, .93);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.5);
}

.brand__mark svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: .24em;
}

.brand small {
  margin-top: 7px;
  color: rgba(255,255,255,.66);
  font-size: 8px;
  letter-spacing: .18em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2.8vw, 42px);
}

.desktop-nav a {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 8px 0 9px;
  font-size: 13px;
  letter-spacing: .12em;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--teal-light);
  transform: translateX(-50%) scaleX(0);
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-nav small {
  margin-top: 1px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .12em;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 7px;
  border: 0;
  background: transparent;
}

.menu-button i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  padding: 28px 8vw;
  color: var(--white);
  background: rgba(9, 13, 15, .98);
  opacity: 0;
  visibility: hidden;
  transform: translateX(4%);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-panel__close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: 42px;
  font-weight: 200;
}

.mobile-panel__brand {
  margin: 50px 0 36px;
  color: var(--teal-light);
  font-size: 12px;
  letter-spacing: .36em;
}

.mobile-panel nav {
  border-top: 1px solid rgba(255,255,255,.18);
}

.mobile-panel nav a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: clamp(22px, 7vw, 34px);
  letter-spacing: .08em;
}

.mobile-panel nav a span {
  color: var(--teal-light);
  font-size: 10px;
}

.mobile-panel nav a small {
  color: rgba(255,255,255,.54);
  font-size: 10px;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__media,
.hero__media::after,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img {
  animation: hero-film 18s ease-in-out infinite alternate;
}

.hero__media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(7,11,13,.38), rgba(7,11,13,.1) 45%, rgba(7,11,13,.62)),
    radial-gradient(circle at 50% 42%, rgba(11,15,17,.12), rgba(11,15,17,.58) 75%);
}

.hero__glow {
  mix-blend-mode: screen;
  background: linear-gradient(115deg, transparent 25%, rgba(95,180,184,.09) 48%, transparent 70%);
  transform: translateX(-100%);
  animation: light-sweep 10s ease-in-out infinite;
}

@keyframes hero-film {
  from { transform: scale(1.03) translate3d(-.7%, -.5%, 0); }
  to { transform: scale(1.1) translate3d(1.2%, .8%, 0); }
}

@keyframes light-sweep {
  0%, 30% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(110%); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  padding: 120px 0 100px;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 24px;
  color: var(--teal-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-indent: .42em;
}

.hero__logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(60px, 11.2vw, 150px);
  font-weight: 200;
  letter-spacing: -.07em;
  line-height: .86;
}

.hero__logo span:last-child {
  color: var(--teal-light);
  font-weight: 700;
}

.hero__catch {
  margin: 34px 0 0;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: .05em;
}

.hero__lead {
  max-width: 650px;
  margin: 13px auto 0;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 2;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero__chips li {
  padding: 5px 16px;
  color: #d7f2f2;
  border: 1px solid rgba(139,209,208,.48);
  border-radius: 999px;
  background: rgba(18,78,84,.22);
  font-size: 11px;
  letter-spacing: .06em;
}

.hero__chips li::before {
  margin-right: 6px;
  color: var(--teal-light);
  content: "✓";
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-width: 190px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

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

.button--solid {
  color: var(--black);
  background: var(--white);
}

.button--solid:hover {
  background: var(--teal-light);
}

.button--ghost {
  border-color: rgba(255,255,255,.68);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}

.button--dark {
  color: var(--white);
  background: var(--black);
}

.button--dark:hover {
  background: var(--teal);
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  color: rgba(255,255,255,.68);
  transform: translateX(-50%);
}

.scroll-cue span {
  font-size: 8px;
  letter-spacing: .32em;
  text-indent: .32em;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 36px;
  margin-top: 9px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  to { top: 100%; }
}

.section-inner {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin: 0 auto;
}

.rediscovery {
  padding: clamp(80px, 10vw, 150px) 0 clamp(70px, 9vw, 120px);
  color: var(--white);
  background:
    linear-gradient(rgba(11,15,17,.95), rgba(11,15,17,.97)),
    url("./assets/category-av.png") center / cover;
}

.rediscovery__intro {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(360px, 1.4fr);
  gap: clamp(45px, 8vw, 120px);
  width: min(920px, 100%);
  margin: 0 auto 72px;
}

.rediscovery__title {
  padding-top: 5px;
}

.rediscovery__title p {
  margin: 0;
  color: var(--gold);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .14em;
}

.rediscovery__title h2 {
  margin: 7px 0 0;
  font-size: 15px;
  letter-spacing: .3em;
  line-height: 1.6;
}

.rediscovery__text p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 2.05;
}

.post-rail {
  min-height: 315px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}

.post-rail__status {
  display: grid;
  min-height: 315px;
  margin: 0;
  place-items: center;
  padding: 32px;
  color: rgba(255,255,255,.58);
  text-align: center;
  font-size: 12px;
}

.post-rail__track {
  display: flex;
  width: max-content;
  animation: post-rail var(--rail-duration, 48s) linear infinite;
  will-change: transform;
}

.post-rail:hover .post-rail__track,
.post-rail:focus-within .post-rail__track {
  animation-play-state: paused;
}

.post-rail__cycle {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}

.rail-post {
  position: relative;
  display: block;
  width: clamp(235px, 22vw, 310px);
  min-height: 315px;
  flex-shrink: 0;
  overflow: hidden;
  background: #1c2225;
}

.rail-post > img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  opacity: .82;
  transition: opacity .55s ease, transform .65s ease;
}

.rail-post:hover > img {
  opacity: 1;
  transform: scale(1.055);
}

.rail-post__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,9,.03) 24%, rgba(5,8,9,.94));
}

.rail-post__copy {
  position: absolute;
  right: 22px;
  bottom: 23px;
  left: 22px;
  z-index: 1;
}

.rail-post .post-meta {
  color: rgba(255,255,255,.68);
}

.rail-post .post-meta__category {
  padding: 0;
  color: var(--teal-light);
  background: none;
}

.rail-post .post-meta time {
  color: rgba(255,255,255,.58);
}

.rail-post h3 {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.rediscovery__pickup-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 15px;
  margin: 29px auto 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.rediscovery__pickup-link i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  font-style: normal;
  transition: border-color .2s ease, transform .2s ease;
}

.rediscovery__pickup-link:hover i {
  border-color: var(--teal-light);
  transform: translateX(5px);
}

@keyframes post-rail {
  to { transform: translateX(-50%); }
}

.post-rail .post-meta {
  font-size: 9px;
}

.pickup {
  padding: clamp(88px, 10vw, 145px) 0;
  background: var(--paper);
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(23,50,68,.07);
  transition: box-shadow .35s ease, transform .35s ease;
}

.post-card:hover {
  box-shadow: 0 22px 50px rgba(23,50,68,.15);
  transform: translateY(-7px);
}

.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e7e3;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.045);
}

.post-card__body {
  display: flex;
  min-height: 270px;
  flex: 1;
  flex-direction: column;
  padding: 25px clamp(21px, 2.4vw, 30px) 28px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: #8b9193;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.post-meta__category {
  padding: 3px 9px;
  color: var(--white);
  background: var(--teal);
  letter-spacing: .08em;
}

.post-card h3 {
  margin: 15px 0 10px;
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.post-card__body > p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.post-card__more::after {
  content: "→";
  font-size: 15px;
  transition: transform .2s ease;
}

.post-card:hover .post-card__more::after {
  transform: translateX(5px);
}

.posts-status {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 18px;
  place-items: center;
  padding: 36px;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23,50,68,.035) 1px, transparent 1px),
    linear-gradient(rgba(23,50,68,.035) 1px, transparent 1px),
    rgba(255,255,255,.7);
  background-size: 36px 36px;
}

.posts-status p {
  margin: 0;
  font-size: 12px;
}

.posts-status .button {
  min-width: 230px;
}

.posts-more {
  margin-top: 45px;
  text-align: center;
}

.posts-more[hidden] {
  display: none;
}

.categories {
  padding: clamp(88px, 10vw, 145px) 0 0;
  background: var(--white);
}

.section-heading {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin: 0 auto clamp(54px, 7vw, 92px);
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: var(--teal);
  font-size: clamp(25px, 3.8vw, 42px);
  font-weight: 300;
  letter-spacing: .16em;
  line-height: 1.2;
}

.section-heading h2 {
  margin: 9px 0 0;
  font-size: 13px;
  letter-spacing: .3em;
}

.section-heading > span {
  display: block;
  width: 46px;
  height: 1px;
  margin: 27px auto 0;
  background: var(--red);
  box-shadow: 0 4px 0 var(--red);
}

.section-heading--light p,
.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light p {
  color: var(--teal-light);
}

.category-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(370px, .7fr);
  min-height: 580px;
}

.category-feature--reverse {
  grid-template-columns: minmax(370px, .7fr) minmax(0, 1.3fr);
}

.category-feature--reverse .category-feature__media {
  grid-column: 2;
}

.category-feature--reverse .category-feature__copy {
  grid-column: 1;
  grid-row: 1;
}

.category-feature__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.category-feature__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(5,8,9,.05), rgba(5,8,9,.24));
}

.category-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.category-feature:hover .category-feature__media img {
  transform: scale(1.035);
}

.category-feature__media > span {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  color: rgba(255,255,255,.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4em;
  writing-mode: vertical-rl;
}

.category-feature__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 105px);
  background: var(--paper);
}

.category-feature__number {
  position: absolute;
  top: 34px;
  right: 42px;
  color: rgba(23,50,68,.08);
  font-size: clamp(70px, 10vw, 132px);
  font-weight: 700;
  line-height: 1;
}

.category-feature__en {
  position: relative;
  z-index: 1;
  margin: 0 0 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .29em;
}

.category-feature__copy h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: .06em;
}

.category-feature__copy h3::after {
  display: block;
  width: 40px;
  height: 2px;
  margin: 21px 0 24px;
  content: "";
  background: var(--red);
}

.category-feature__copy > p:not(.category-feature__en) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.tag-list span {
  padding: 3px 11px;
  border: 1px solid #cfd5d5;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: #5d686b;
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.text-link i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  font-style: normal;
  transition: background .2s ease, transform .2s ease;
}

.text-link:hover i {
  background: var(--teal);
  transform: translateX(4px);
}

.concept {
  padding: clamp(90px, 11vw, 155px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17,42,56,.98), rgba(8,17,23,.98)),
    url("./assets/hero-appliance-lab.png") center / cover fixed;
}

.concept__catch {
  margin: -34px auto 13px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: .04em;
}

.concept__lead {
  max-width: 760px;
  margin: 0 auto 50px;
  color: rgba(255,255,255,.7);
  text-align: center;
  font-size: 13px;
  line-height: 2.05;
}

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

.policy-card {
  min-height: 260px;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.policy-card:hover {
  border-color: rgba(139,209,208,.58);
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.policy-card > span {
  color: var(--teal-light);
  font-size: 31px;
  font-weight: 300;
}

.policy-card h3 {
  margin: 25px 0 10px;
  font-size: 17px;
}

.policy-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.9;
}

.researcher {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 820px;
  margin: 64px auto 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(0,0,0,.25);
}

.researcher img {
  width: 155px;
  height: 155px;
  object-fit: cover;
  filter: saturate(.8);
}

.researcher__role {
  margin: 0;
  color: var(--teal-light) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: .3em;
}

.researcher h3 {
  margin: 3px 0 10px;
  font-size: 21px;
}

.researcher div > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.9;
}

.house-map {
  position: relative;
  padding: clamp(90px, 11vw, 155px) 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(246,244,239,.92), rgba(246,244,239,.96)),
    linear-gradient(90deg, rgba(23,50,68,.055) 1px, transparent 1px),
    linear-gradient(rgba(23,50,68,.055) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.house-map::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(86vw, 920px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(23,50,68,.24), transparent);
  transform: translateX(-50%);
}

.house-map__intro {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(390px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  width: min(930px, 100%);
  margin: -30px auto 52px;
}

.house-map__eyebrow {
  grid-column: 1;
  margin: 0 0 7px !important;
  color: var(--teal) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .26em;
}

.house-map__intro h3 {
  grid-column: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.55;
}

.house-map__intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}

.house-map__frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(23,50,68,.18);
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(23,50,68,.12);
}

.house-map__viewport {
  overflow: hidden;
  outline: none;
  scrollbar-color: var(--teal) rgba(23,50,68,.08);
  scrollbar-width: thin;
}

.house-map__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(79,174,176,.35);
}

.house-map__canvas {
  position: relative;
  width: 100%;
  min-width: 820px;
  aspect-ratio: 1200 / 650;
  overflow: hidden;
  background: #eceae4;
}

.house-map__plan {
  display: block;
  width: 100%;
  height: 100%;
  color: rgba(23,50,68,.08);
}

.house-map__grid {
  fill: url("#map-grid");
}

.house-map__shadow {
  fill: rgba(23,50,68,.14);
  transform: translateY(6px);
}

.house-map__room {
  stroke: none;
}

.house-map__room--kitchen {
  fill: #e2efec;
}

.house-map__room--utility {
  fill: #dce9ed;
}

.house-map__room--living {
  fill: #f6f2e9;
}

.house-map__room--bedroom {
  fill: #e8ecdf;
}

.house-map__room--av {
  fill: #e2e5e7;
}

.house-map__room--entry {
  fill: #ede6dd;
}

.house-map__wall {
  fill: none;
  stroke: var(--navy);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 10;
}

.house-map__opening {
  fill: none;
  stroke: #f6f4ef;
  stroke-linecap: butt;
  stroke-width: 13;
}

.house-map__furniture {
  fill: none;
  stroke: rgba(23,50,68,.32);
  stroke-width: 3;
}

.house-map__labels {
  fill: rgba(23,50,68,.52);
  font-family: "Avenir Next", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.house-map__labels text:nth-child(even) {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}

.map-pin {
  position: absolute;
  top: var(--map-y);
  left: var(--map-x);
  z-index: 2;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 26px;
  grid-template-rows: auto auto;
  width: 172px;
  min-height: 62px;
  align-items: center;
  padding: 9px 9px 9px 8px;
  color: var(--navy);
  border: 1px solid rgba(23,50,68,.22);
  background: rgba(255,255,255,.94);
  box-shadow: 0 9px 24px rgba(23,50,68,.17);
  transform: translate(-50%, -50%);
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
  backdrop-filter: blur(8px);
}

.map-pin::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 1px solid rgba(23,50,68,.22);
  border-bottom: 1px solid rgba(23,50,68,.22);
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.map-pin > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-size: 9px;
  font-weight: 700;
}

.map-pin strong,
.map-pin small {
  display: block;
  min-width: 0;
  line-height: 1.3;
}

.map-pin strong {
  align-self: end;
  font-size: 12px;
  letter-spacing: .05em;
}

.map-pin small {
  align-self: start;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
}

.map-pin i {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--teal);
  border: 1px solid rgba(79,174,176,.4);
  border-radius: 50%;
  font-style: normal;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.map-pin:hover,
.map-pin:focus-visible {
  z-index: 3;
  color: var(--white);
  outline: none;
  border-color: var(--navy);
  background: rgba(23,50,68,.97);
  box-shadow: 0 14px 34px rgba(23,50,68,.28);
  transform: translate(-50%, calc(-50% - 5px));
}

.map-pin:hover small,
.map-pin:focus-visible small {
  color: rgba(255,255,255,.66);
}

.map-pin:hover i,
.map-pin:focus-visible i {
  color: var(--navy);
  background: var(--teal-light);
  transform: translateX(3px);
}

.house-map__swipe {
  display: none;
  margin: 12px 2px 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  letter-spacing: .05em;
}

.house-map__swipe span {
  margin-left: 5px;
  color: var(--teal);
  font-size: 15px;
}

.latest {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--white);
}

.latest-posts {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.latest-post {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 38px;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  min-height: 154px;
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}

.latest-post:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--paper);
}

.latest-post > img {
  width: 190px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.latest-post__copy {
  min-width: 0;
}

.latest-post h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}

.latest-post__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  transition: background .2s ease, transform .2s ease;
}

.latest-post:hover .latest-post__arrow {
  background: var(--teal);
  transform: translateX(4px);
}

.empty-state {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(45px, 7vw, 80px) 30px;
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23,50,68,.035) 1px, transparent 1px),
    linear-gradient(rgba(23,50,68,.035) 1px, transparent 1px),
    #fafaf8;
  background-size: 36px 36px;
}

.empty-state__line {
  width: 1px;
  height: 55px;
  margin: 0 auto 26px;
  background: var(--teal);
}

.empty-state__en {
  margin: 0;
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .29em;
}

.empty-state h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: clamp(20px, 3vw, 28px);
}

.empty-state > p:not(.empty-state__en) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.news {
  padding: clamp(82px, 10vw, 135px) 0;
  color: var(--white);
  background: var(--black);
}

.news-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.18);
}

.news-list article {
  display: grid;
  grid-template-columns: 120px 1fr 30px;
  gap: 24px;
  align-items: center;
  padding: 21px 8px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.news-list time {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.news-list p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.news-list article > span {
  color: rgba(255,255,255,.42);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
  padding: 72px var(--side) 34px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  background: #070a0b;
}

.site-footer__brand strong,
.site-footer__brand small {
  display: block;
}

.site-footer__brand strong {
  font-size: 26px;
  letter-spacing: .22em;
}

.site-footer__brand small {
  margin-top: 9px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  letter-spacing: .14em;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 35px 0 0;
  padding-top: 20px;
  color: rgba(255,255,255,.32);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
  letter-spacing: .16em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    color: var(--white);
  }

  .category-feature,
  .category-feature--reverse {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
  }

  .category-feature__copy {
    padding: 52px 42px;
  }

  .category-feature__media {
    min-height: 460px;
  }

  .house-map__viewport {
    overflow-x: auto;
  }

  .house-map__swipe {
    display: block;
  }
}

@media (max-width: 760px) {
  :root {
    --side: 22px;
  }

  .brand small {
    display: none;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero__logo {
    flex-direction: column;
    gap: .08em;
    align-items: center;
    font-size: clamp(66px, 21vw, 94px);
  }

  .hero__catch {
    font-size: 17px;
  }

  .hero__lead {
    width: min(480px, 94%);
    font-size: 12px;
  }

  .desktop-only {
    display: none;
  }

  .hero__chips li {
    padding: 4px 11px;
    font-size: 10px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .rediscovery__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rediscovery__title {
    text-align: center;
  }

  .rediscovery__text {
    text-align: center;
  }

  .rail-post {
    width: 72vw;
  }

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

  .post-card {
    display: grid;
    grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
  }

  .post-card__media {
    height: 100%;
    min-height: 225px;
    aspect-ratio: auto;
  }

  .post-card__body {
    min-height: 225px;
    padding: 20px 18px;
  }

  .post-card h3 {
    margin-top: 11px;
    font-size: 16px;
  }

  .post-card__body > p {
    -webkit-line-clamp: 2;
  }

  .post-card__more {
    padding-top: 14px;
  }

  .category-feature,
  .category-feature--reverse {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .category-feature--reverse .category-feature__media,
  .category-feature--reverse .category-feature__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .category-feature__media {
    min-height: min(70vw, 430px);
  }

  .category-feature__copy {
    min-height: 430px;
    padding: 54px 28px;
  }

  .category-feature__number {
    top: 20px;
    right: 24px;
  }

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

  .policy-card {
    min-height: 0;
  }

  .researcher {
    grid-template-columns: 94px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .researcher img {
    width: 94px;
    height: 120px;
  }

  .researcher div > p:last-child {
    font-size: 11px;
  }

  .house-map__intro {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: -22px;
    text-align: center;
  }

  .house-map__eyebrow,
  .house-map__intro h3,
  .house-map__intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .house-map__frame {
    margin-right: calc(var(--side) * -.35);
    margin-left: calc(var(--side) * -.35);
    padding: 8px;
  }

  .house-map__canvas {
    min-width: 780px;
  }

  .map-pin {
    width: 158px;
  }

  .latest-post {
    grid-template-columns: 112px minmax(0, 1fr) 28px;
    gap: 15px;
    min-height: 116px;
    padding: 16px 0;
  }

  .latest-post:hover {
    padding-right: 6px;
    padding-left: 6px;
  }

  .latest-post > img {
    width: 112px;
  }

  .latest-post h3 {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
  }

  .latest-post__arrow {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .news-list article {
    grid-template-columns: 1fr 24px;
    gap: 8px 14px;
  }

  .news-list time {
    grid-column: 1;
  }

  .news-list p {
    grid-column: 1;
  }

  .news-list article > span {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .post-card {
    display: flex;
  }

  .post-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .post-card__body {
    min-height: 245px;
  }

  .latest-post {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .latest-post > img {
    width: 94px;
  }

  .latest-post__arrow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .post-rail {
    overflow-x: auto;
  }
}
