:root {
  --ink: #0b1117;
  --paper: #f2f1ed;
  --muted: #8e969a;
  --acid: #d9ff69;
  --line: rgba(255, 255, 255, 0.18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

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

img {

  max-width: 100%;
}

.container {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
}

main > section {
  position: relative;
  isolation: isolate;
}

.section-transition::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  visibility: visible;
  opacity: 0.58;
  background: linear-gradient(180deg, rgba(242, 241, 237, 0.12), rgba(11, 17, 23, 0.08));
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  backdrop-filter: blur(14px) saturate(118%);
  transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.section-transition > .container {
  position: relative;
  z-index: 1;
  opacity: 0.76;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.88s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-transition.from-top > .container {
  transform: translateY(-18px);
}

.section-transition.is-visible::after {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.82s;
}

.section-transition.is-visible > .container {
  opacity: 1;
  transform: translateY(0);
}

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 22px 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 10, 14, 0.55), transparent);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding: 6px 0;
  background: rgba(11, 17, 23, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 34px rgba(5, 10, 14, 0.12);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 72px;
  min-width: 72px;
  max-height: 64px;
  overflow: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .brand {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  transform: translateY(-6px);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-links {
  font-size: 12px;
}

.site-header.is-scrolled .nav-pill {
  padding: 6px 13px;
}

.nav-pill {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-pill span,
.hero-link span,
.contact-status span {
  margin-left: 7px;
  color: var(--acid);
  font-size: 16px;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-aerial-real.jpg");
  background-position: center 52%;
  background-size: cover;
  filter: saturate(0.72) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 16, 0.92) 0%, rgba(7, 12, 16, 0.62) 42%, rgba(7, 12, 16, 0.12) 100%), linear-gradient(0deg, rgba(7, 12, 16, 0.58), transparent 52%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 112px 0 42px;
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-copy {
  width: min(820px, 100%);
  margin: auto 0;
  padding: 54px 0 76px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9em;
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 560;
  line-height: 1.07;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero h1 em,
.contact-inner h2 em {
  color: var(--acid);
  font-style: normal;
}

.hero-lead {
  max-width: 430px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.75;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 14px;
  font-weight: 600;
}

.manifesto {
  padding: 150px 0 165px;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 2.1fr);
  gap: 8vw;
}

.section-index {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.section-index span {
  color: #9ca2a2;
}

.kicker {
  color: #000000;
}

.manifesto h2,
.section-header h2,
.value-copy h2,
.contact-inner h2 {
  margin: 0;
  font-weight: 530;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.manifesto h2 {
  max-width: 11em;
  font-size: clamp(44px, 5.6vw, 78px);
}

.manifesto h2 span {
  color: #939a9a;
}

.body-copy {
  max-width: 520px;
  margin: 34px 0 0;
  color: #5d6667;
  font-size: 16px;
  line-height: 1.9;
}

.facts-section {
  padding: 0 0 145px;
  background: var(--paper);
}

.facts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 1.45fr) minmax(0, 0.8fr);
  border-top: 1px solid rgba(11, 17, 23, 0.18);
}

.facts-grid article {
  min-width: 0;
  padding: 34px 28px 0 0;
}

.facts-grid strong {
  display: block;
  font-size: clamp(36px, 4.1vw, 60px);
  font-weight: 530;
  line-height: 1.08;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.facts-grid small {
  margin-left: 5px;
  color: #73931a;
  font-size: 0.38em;
  font-weight: 650;
  letter-spacing: 0;
}

.facts-grid p {
  margin: 12px 0 0;
  color: #747c7d;
  font-size: 13px;
}

.scene-section {
  padding: 110px 0 150px;
  background: #e2e3df;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: end;
  margin-bottom: 58px;
}

.section-header h2 {
  max-width: 11em;
  font-size: clamp(42px, 5.2vw, 72px);
}

.section-note {
  margin: 0;
  color: #6f7778;
  font-size: 14px;
  line-height: 1.85;
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.scene-card {
  position: relative;
  height: clamp(480px, 48vw, 620px);
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.scene-card:hover {
  transform: translateY(-7px);
}

.scene-day {
  background-image: url("./assets/lake-panorama-real.jpg");
  background-position: center;
}

.scene-night {
  background-image: url("./assets/night-scene-real.jpg");
  background-position: center 58%;
}

.scene-family {
  background-image: url("./assets/facade-real.jpg");
  background-position: 54% center;
}

.scene-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 32%, rgba(0, 0, 0, 0.72));
}

.scene-meta,
.scene-text {
  position: absolute;
  right: 25px;
  left: 25px;
}

.scene-meta {
  top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.72);
}

.scene-text {
  bottom: 27px;
}

.scene-text p {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 12px;
}

.scene-text h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.scene-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.value-section {
  padding: 150px 0;
  color: #fff;
  background: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 8vw;
  align-items: center;
}

.value-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(3, 10, 13, 0.05), rgba(3, 10, 13, 0.44)), url("./assets/project-block.jpg");
  background-position: center;
  background-size: cover;
}

.image-caption {
  position: absolute;
  bottom: 24px;
  left: 25px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.17em;
}

.value-copy .section-index {
  color: #fff;
}

.value-copy .kicker {
  margin-top: 72px;
}

.value-copy h2 {
  max-width: 11em;
  font-size: clamp(40px, 4.25vw, 60px);
}

.concept-title span {
  display: block;
  white-space: nowrap;
}

.value-copy .body-copy {
  color: rgba(255, 255, 255, 0.6);
}

.value-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.value-list strong {
  color: var(--acid);
  font-size: 12px;
  font-weight: 500;
}

.value-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.formats-section {
  padding: 145px 0 155px;
  background: #e2e3df;
}

.formats-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.formats-heading h2,
.location-copy h2 {
  margin: 0;
  font-weight: 530;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.formats-heading h2 {
  max-width: 10em;
  font-size: clamp(44px, 5.6vw, 78px);
}

.formats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 14px;
}

.format-card {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.format-brands {
  grid-column: 1 / -1;
}

.brand-matrix {
  position: relative;
  margin: 8px 8px 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(135deg, #101a18, #0d151a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-matrix::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(217, 255, 105, 0.08), transparent 34%, rgba(11, 17, 23, 0.12));
}

.brand-matrix img {
  width: 100%;
  aspect-ratio: 1800 / 840;
  object-fit: contain;
  border-radius: calc(var(--radius) - 14px);
  filter: saturate(0.88) contrast(1.04);
}

.format-visual {
  min-height: 460px;
  background-position: center;
  background-size: cover;
}

.format-south .format-visual {
  background-image: linear-gradient(180deg, rgba(5, 10, 14, 0.04), rgba(5, 10, 14, 0.3)), url("./assets/facade-real.jpg");
}

.format-north .format-visual {
  background-image: linear-gradient(180deg, rgba(5, 10, 14, 0.02), rgba(5, 10, 14, 0.34)), url("./assets/night-scene-real.jpg");
  background-position: center 58%;
}

.format-copy {
  padding: 24px 28px 28px;
}

.format-copy p {
  margin: 0 0 9px;
  color: var(--acid);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.format-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 520;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.location-section {
  padding: 150px 0;
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 8vw;
  align-items: center;
}

.location-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(3, 10, 13, 0.03), rgba(3, 10, 13, 0.2)), url("./assets/hero-aerial-real.jpg");
  background-position: 58% center;
  background-size: cover;
}

.location-copy .kicker {
  margin-top: 72px;
}

.location-copy h2 {
  max-width: 9em;
  font-size: clamp(42px, 4.8vw, 68px);
}

.address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 34px 0 0;
  padding: 17px 0 15px;
  color: #73931a;
  border-top: 1px solid rgba(11, 17, 23, 0.16);
  border-bottom: 1px solid rgba(11, 17, 23, 0.16);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.address:hover {
  color: var(--ink);
  border-color: rgba(11, 17, 23, 0.34);
}

.address-action {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.contact-section {
  padding: 155px 0;
  background: var(--acid);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 56px;
  align-items: end;
}

.contact-inner .kicker {
  grid-column: 1 / -1;
  color: #4e6811;
}

.contact-inner h2 {
  max-width: 8em;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.contact-title span {
  display: block;
  white-space: nowrap;
}

.contact-title-muted {
  color: rgba(11, 17, 23, 0.52);
  padding-left: clamp(28px, 5vw, 86px);
  line-height: inherit;
}

.contact-aside {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 280px;
  padding-bottom: 8px;
}

.contact-aside p {
  margin: 0;
  color: #50601d;
  font-size: 14px;
  line-height: 1.75;
}

.contact-status {
  display: inline-flex;
  padding: 14px 19px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.site-footer {
  padding: 28px 0;
  color: #fff;
  background: var(--ink);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-row .brand {
  width: 58px;
  min-width: 58px;
  color: #fff;
}

.footer-row .brand-logo {
  width: 56px;
  height: 58px;
}

.footer-row > p {
  margin: 0;
}

.footer-row > p img {
  display: inline-block;
  width: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 640px);
  }

  .site-header {
    padding: 16px 0;
  }

  .site-header.is-scrolled {
    padding: 5px 0;
  }

  .brand {
    width: 54px;
    min-width: 54px;
  }

  .brand-logo {
    width: 52px;
    height: 54px;
  }

  .nav-links {
    display: none;
  }

  .nav-pill {
    padding: 8px 12px;
  }

  .hero-content {
    padding: 96px 0 30px;
  }

  .hero-topline {
    justify-content: space-between;
    gap: 12px;
    font-size: 9px;
  }

  .hero-copy {
    padding: 54px 0 70px;
  }

  .hero h1 {
    max-width: 7.8em;
    font-size: clamp(50px, 14.5vw, 76px);
    line-height: 1.1;
  }

  .hero-lead {
    font-size: 15px;
  }

  .manifesto,
  .scene-section,
  .value-section,
  .formats-section,
  .location-section,
  .contact-section {
    padding: 88px 0;
  }

  .manifesto-grid,
  .value-grid,
  .location-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-index {
    margin-bottom: 4px;
  }

  .manifesto h2,
  .section-header h2,
  .value-copy h2,
  .formats-heading h2,
  .location-copy h2 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 56px);
    line-height: 1.14;
  }

  .value-copy .concept-title {
    font-size: clamp(27px, 8.25vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.05em;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-note {
    max-width: 28em;
  }

  .facts-section {
    padding-bottom: 88px;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .facts-grid article {
    padding: 24px 0 0;
  }

  .facts-grid strong {
    white-space: normal;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scene-card {
    height: min(118vw, 560px);
  }

  .value-image {
    aspect-ratio: 4 / 5;
  }

  .value-copy .kicker {
    margin-top: 0;
  }

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

  .format-brands {
    grid-column: 1;
  }

  .brand-matrix {
    margin: 6px 6px 0;
    padding: 6px;
    border-radius: calc(var(--radius) - 8px);
  }

  .brand-matrix img {
    border-radius: calc(var(--radius) - 12px);
  }

  .format-visual {
    min-height: min(112vw, 520px);
  }

  .location-image {
    aspect-ratio: 4 / 5;
  }

  .location-copy .kicker {
    margin-top: 0;
  }

  .address {
    align-items: flex-end;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    text-align: right;
  }

  .contact-inner h2 {
    max-width: 8em;
    font-size: clamp(44px, 13.5vw, 58px);
    line-height: 1.05;
  }

  .contact-title-muted {
    padding-left: 0;
  }

  .contact-aside {
    justify-self: end;
    align-items: flex-end;
    gap: 22px;
    max-width: 310px;
    padding-bottom: 0;
    text-align: right;
  }

  .contact-status {
    align-self: flex-end;
    margin-top: 2px;
  }

  .footer-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 7px 18px;
  }

  .footer-row .footer-brand {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: center;
  }

  .footer-row > p {
    grid-column: 2;
    justify-self: end;
    text-align: right;
    line-height: 1.6;
  }
}

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

  .site-header,
  .brand,
  .scene-card,
  .section-transition::after,
  .section-transition > .container {
    transition: none;
  }

  .section-transition::after {
    display: none;
  }

  .section-transition > .container,
  .section-transition.from-top > .container,
  .section-transition.is-visible > .container {
    opacity: 1;
    transform: none;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header.is-scrolled {
    background: rgba(11, 17, 23, 0.94);
  }
}
